composefs: 1.0.5 -> 1.0.6 (#342351)

This commit is contained in:
Sandro 2024-09-17 11:27:01 +02:00 committed by GitHub
commit 81d3d5710e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,20 +25,21 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "composefs";
version = "1.0.5";
version = "1.0.6";
src = fetchFromGitHub {
owner = "containers";
repo = "composefs";
rev = "v${finalAttrs.version}";
hash = "sha256-2h0wwtuhvFz5IExR/Fu0l+/nTAlDpMREVRjgrhbEghw=";
hash = "sha256-9YEY7oTjWwVT2KbzTOOc6sJIGEAkdLSKDf1noF1cYuA=";
};
strictDeps = true;
outputs = [ "out" "lib" "dev" ];
postPatch = lib.optionalString installExperimentalTools ''
sed -i "s/install : false/install : true/g" tools/meson.build
substituteInPlace tools/meson.build \
--replace-fail "install : false" "install : true"
'';
nativeBuildInputs = [ meson ninja go-md2man pkg-config ];