ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / catatonit / package.nix
blob1c9f310ed86a1a796299ce2e02bdcf9ed4840153
1 { stdenv
2 , lib
3 , autoreconfHook
4 , fetchFromGitHub
5 , glibc
6 , nixosTests
7 }:
9 stdenv.mkDerivation rec {
10   pname = "catatonit";
11   version = "0.2.0";
13   src = fetchFromGitHub {
14     owner = "openSUSE";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "sha256-AqJURf4OrPHfTm5joA3oPXH4McE1k0ouvDXAF3jiwgk=";
18   };
20   nativeBuildInputs = [ autoreconfHook ];
21   buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
23   enableParallelBuilding = true;
24   strictDeps = true;
26   doInstallCheck = true;
27   installCheckPhase = ''
28     readelf -d $out/bin/catatonit | grep 'There is no dynamic section in this file.'
29   '';
31   passthru.tests = { inherit (nixosTests) podman; };
33   meta = with lib; {
34     description = "Container init that is so simple it's effectively brain-dead";
35     homepage = "https://github.com/openSUSE/catatonit";
36     license = licenses.gpl2Plus;
37     maintainers = with maintainers; [ erosennin ] ++ teams.podman.members;
38     platforms = platforms.linux;
39     mainProgram = "catatonit";
40   };