the-foundation: 1.4.0 → 1.5.0

This commit is contained in:
Nikolay Korotkiy 2022-11-26 10:56:02 +03:00
parent 62421e2d30
commit ff883d2557
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -10,16 +10,16 @@
, zlib
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "the-foundation";
version = "1.4.0";
version = "1.5.0";
src = fetchFromGitea {
domain = "git.skyjake.fi";
owner = "skyjake";
repo = "the_Foundation";
rev = "v${version}";
hash = "sha256-IHwWJryG4HcrW9Bf8KJrisCrbF86RBQj6Xl1HTmcr6k=";
rev = "v${finalAttrs.version}";
hash = "sha256-wPFBKc20/ED58RFpDhmPnlSHCf3FG5sD2ubQOl5NF+o=";
};
nativeBuildInputs = [ cmake pkg-config ];
@ -38,4 +38,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}
})