Skip to content

Commit

Permalink
Merge pull request #284793 from Kiskae/composefs/1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Mar 1, 2024
2 parents b84bc4e + 542b6bf commit 32a6d56
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/by-name/co/composefs/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,21 @@
, fsverity-utils
, nix-update-script
, testers
, nixosTests

, fuseSupport ? lib.meta.availableOn stdenv.hostPlatform fuse3
, enableValgrindCheck ? false
, installExperimentalTools ? false
}:
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;
Expand Down Expand Up @@ -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 = {
Expand Down

0 comments on commit 32a6d56

Please sign in to comment.