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 3 stdenv.mkDerivation rec { 4 pname = "catatonit"; 5 - version = "0.1.7"; 6 7 src = fetchFromGitHub { 8 owner = "openSUSE"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-jX4fYC/rpfd3ro2UZ6OEu4kU5wpusOwmEVPWEjxwlW4="; 12 }; 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 nativeBuildInputs = [ autoreconfHook ]; 25 buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; 26 ··· 37 meta = with lib; { 38 description = "A container init that is so simple it's effectively brain-dead"; 39 homepage = "https://github.com/openSUSE/catatonit"; 40 - license = licenses.gpl3Plus; 41 maintainers = with maintainers; [ erosennin ] ++ teams.podman.members; 42 platforms = platforms.linux; 43 };
··· 2 3 stdenv.mkDerivation rec { 4 pname = "catatonit"; 5 + version = "0.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "openSUSE"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-AqJURf4OrPHfTm5joA3oPXH4McE1k0ouvDXAF3jiwgk="; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; 16 ··· 27 meta = with lib; { 28 description = "A container init that is so simple it's effectively brain-dead"; 29 homepage = "https://github.com/openSUSE/catatonit"; 30 + license = licenses.gpl2Plus; 31 maintainers = with maintainers; [ erosennin ] ++ teams.podman.members; 32 platforms = platforms.linux; 33 };