Merge pull request #264097 from r-ryantm/auto-update/lagrange

lagrange: 1.17.0 -> 1.17.2
This commit is contained in:
Nikolay Korotkiy 2023-10-29 19:29:48 +04:00 committed by GitHub
commit ed0f304e33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, nix-update-script
, cmake
, pkg-config
@ -17,15 +18,23 @@
stdenv.mkDerivation (finalAttrs: {
pname = "lagrange";
version = "1.17.0";
version = "1.17.2";
src = fetchFromGitHub {
owner = "skyjake";
repo = "lagrange";
rev = "v${finalAttrs.version}";
hash = "sha256-UoyCsmZKpRkO4bQt6RwRAceu3+JPD8I8qSf9/uU5Vm4=";
hash = "sha256-x80le9/mkL57NQGgmqAdbixYGxcoKKO3Rl+BlpOzTwc=";
};
patches = [
# Remove on next release
(fetchpatch {
url = "https://github.com/skyjake/lagrange/commit/e8295f0065e8ecddab2e291e420098ac7981e0a9.patch";
hash = "sha256-s8Ryace6DOjw4C4h1Kb2ti5oygvsAAs/MF9pC3eQbAM=";
})
];
nativeBuildInputs = [ cmake pkg-config zip ];
buildInputs = [ the-foundation ]