composefs: 1.0.0 -> 1.0.1
This commit is contained in:
parent
5e4c2ada4f
commit
9e8674d8e9
1 changed files with 4 additions and 5 deletions
|
@ -27,13 +27,13 @@
|
||||||
assert installExperimentalTools -> (!stdenv.hostPlatform.isMusl);
|
assert installExperimentalTools -> (!stdenv.hostPlatform.isMusl);
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "composefs";
|
pname = "composefs";
|
||||||
version = "1.0.0";
|
version = "1.0.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "containers";
|
owner = "containers";
|
||||||
repo = "composefs";
|
repo = "composefs";
|
||||||
rev = "v${finalAttrs.version}";
|
rev = "v${finalAttrs.version}";
|
||||||
hash = "sha256-OjayMhLc3otqQjHsbLN8nm9D9yGOifBcrSLixjnJmvE=";
|
hash = "sha256-8YbDKw4jYEU6l3Nmqu3gsT9VX0lwYF/39hhcwzgTynY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
@ -75,9 +75,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
# MUSL: https://github.com/containers/composefs/issues/204
|
# MUSL: https://github.com/containers/composefs/issues/204
|
||||||
substituteInPlace tests/Makefile \
|
substituteInPlace tests/Makefile \
|
||||||
--replace " check-checksums" ""
|
--replace " check-checksums" ""
|
||||||
'' + lib.optionalString (stdenv.hostPlatform.isMusl || enableValgrindCheck) ''
|
'' + lib.optionalString enableValgrindCheck ''
|
||||||
# seccomp sandbox breaks these tests
|
# valgrind is incompatible with seccomp
|
||||||
# MUSL: https://github.com/containers/composefs/issues/206
|
|
||||||
substituteInPlace tests/test-checksums.sh \
|
substituteInPlace tests/test-checksums.sh \
|
||||||
--replace "composefs-from-json" "composefs-from-json --no-sandbox"
|
--replace "composefs-from-json" "composefs-from-json --no-sandbox"
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue