nixpkgs/pkgs/development/libraries/uthash/default.nix

33 lines
729 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl }:
let
version = "2.1.0";
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "uthash";
inherit version;
src = fetchurl {
url = "https://github.com/troydhanson/uthash/archive/v${version}.tar.gz";
sha256 = "17k6k97n20jpi9zj3lzvqfw8pv670r6rdqrjf8vrbx6hcj7csb0m";
};
dontBuild = false;
doCheck = true;
2018-08-08 19:03:45 +00:00
checkInputs = [ perl ];
checkTarget = "-C tests/";
installPhase = ''
mkdir -p "$out/include"
cp ./src/* "$out/include/"
'';
meta = with stdenv.lib; {
description = "A hash table for C structures";
homepage = http://troydhanson.github.io/uthash;
license = licenses.bsd2; # it's one-clause, actually, as it's source-only
platforms = platforms.all;
};
}