nixpkgs/pkgs/development/libraries/uthash/default.nix
R. RyanTM 4e84d07589 uthash: 2.0.2 -> 2.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/uthash/versions
2019-01-01 16:55:46 -08:00

32 lines
724 B
Nix

{ stdenv, fetchurl, perl }:
let
version = "2.1.0";
in
stdenv.mkDerivation rec {
name = "uthash-${version}";
src = fetchurl {
url = "https://github.com/troydhanson/uthash/archive/v${version}.tar.gz";
sha256 = "17k6k97n20jpi9zj3lzvqfw8pv670r6rdqrjf8vrbx6hcj7csb0m";
};
dontBuild = false;
doCheck = true;
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;
};
}