python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / timelimit / default.nix
blob22b71ca0f8f44b557f59074909f03513261cce09
1 { lib, stdenv, fetchFromGitLab, perl }:
3 stdenv.mkDerivation rec {
4   pname = "timelimit";
5   version = "1.9.2";
7   src = fetchFromGitLab {
8     owner = "timelimit";
9     repo = pname;
10     rev = "release/${version}";
11     sha256 = "sha256-5IEAF8zCKaCVH6BAxjoa/2rrue9pRGBBkFzN57d+g+g=";
12   };
14   checkInputs = [ perl ];
15   doCheck = true;
17   installFlags = [ "PREFIX=$(out)" ];
18   INSTALL_PROGRAM = "install -m755";
19   INSTALL_DATA = "install -m644";
21   meta = with lib; {
22     description = "Execute a command and terminates the spawned process after a given time with a given signal";
23     homepage = "https://devel.ringlet.net/sysutils/timelimit/";
24     license = licenses.bsd2;
25     platforms = platforms.all;
26     maintainers = with maintainers; [ figsoda ];
27   };