mactop: 0.1.9 -> 0.2.3 (#370511)
[NixPkgs.git] / pkgs / by-name / ut / uthash / package.nix
blob439324f8c009dc53a65c71f94c580f6b29bc8976
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   perl,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "uthash";
10   version = "2.3.0";
12   src = fetchFromGitHub {
13     owner = "troydhanson";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-F0M5ENT3bMn3dD16Oaq9mBFYOWzVliVWupAIrLc2nkQ=";
17   };
19   doCheck = true;
20   nativeCheckInputs = [ perl ];
21   checkTarget = "all";
22   preCheck = "cd tests";
24   installPhase = ''
25     install -Dm644 $src/include/*.h -t $out/include
26   '';
28   meta = with lib; {
29     description = "Hash table for C structures";
30     homepage = "http://troydhanson.github.io/uthash";
31     license = licenses.bsd2; # it's one-clause, actually, as it's source-only
32     platforms = platforms.all;
33   };