Merge pull request #258952 from saschagrunert/catatonit

catatonit: 0.1.7 -> 0.2.0

authored by

Mario Rodas and committed by
GitHub
7131f3c2 fbd0cc5d

+3 -13
+3 -13
pkgs/applications/virtualization/catatonit/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "catatonit"; 5 - version = "0.1.7"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "openSUSE"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-jX4fYC/rpfd3ro2UZ6OEu4kU5wpusOwmEVPWEjxwlW4="; 11 + sha256 = "sha256-AqJURf4OrPHfTm5joA3oPXH4McE1k0ouvDXAF3jiwgk="; 12 12 }; 13 13 14 - patches = [ 15 - # Pull the fix pending upstream inclusion to support automake-1.16.5: 16 - # https://github.com/openSUSE/catatonit/pull/18 17 - (fetchpatch { 18 - name = "automake-1.16.5.patch"; 19 - url = "https://github.com/openSUSE/catatonit/commit/99bb9048f532257f3a2c3856cfa19fe957ab6cec.patch"; 20 - sha256 = "sha256-ooxVjtWXJddQiBvO9I5aRyLeL8y3ecxW/Kvtfg/bpRA="; 21 - }) 22 - ]; 23 - 24 14 nativeBuildInputs = [ autoreconfHook ]; 25 15 buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; 26 16 ··· 37 27 meta = with lib; { 38 28 description = "A container init that is so simple it's effectively brain-dead"; 39 29 homepage = "https://github.com/openSUSE/catatonit"; 40 - license = licenses.gpl3Plus; 30 + license = licenses.gpl2Plus; 41 31 maintainers = with maintainers; [ erosennin ] ++ teams.podman.members; 42 32 platforms = platforms.linux; 43 33 };