Merge pull request #284793 from Kiskae/composefs/1.0.3
This commit is contained in:
commit
32a6d567c5
1 changed files with 8 additions and 3 deletions
|
@ -16,6 +16,7 @@
|
|||
, fsverity-utils
|
||||
, nix-update-script
|
||||
, testers
|
||||
, nixosTests
|
||||
|
||||
, fuseSupport ? lib.meta.availableOn stdenv.hostPlatform fuse3
|
||||
, enableValgrindCheck ? false
|
||||
|
@ -23,13 +24,13 @@
|
|||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "composefs";
|
||||
version = "1.0.2";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "containers";
|
||||
repo = "composefs";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-ViZkmuLFV5DN1nqWKGl+yaqhYUEOztZ1zGpxjr1U/dw=";
|
||||
hash = "sha256-YmredtZZKMjzJW/kxiTUmdgO/1iPIKzJsuJz8DeEdGM=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
@ -69,7 +70,11 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
|
||||
passthru = {
|
||||
updateScript = nix-update-script { };
|
||||
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||
tests = {
|
||||
# Broken on aarch64 unrelated to this package: https://github.com/NixOS/nixpkgs/issues/291398
|
||||
inherit (nixosTests) activation-etc-overlay-immutable activation-etc-overlay-mutable;
|
||||
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue