Unverified Commit 81d3d571 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

composefs: 1.0.5 -> 1.0.6 (#342351)

parents 274206a1 120879bd
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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 ];