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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
702 B
Nix
Raw Normal View History

2021-09-06 16:08:42 +02:00
{ lib, stdenv, fetchFromGitHub, perl }:
2021-07-17 20:37:27 +02:00
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "uthash";
2021-09-06 16:08:42 +02:00
version = "2.3.0";
2021-09-06 16:08:42 +02:00
src = fetchFromGitHub {
owner = "troydhanson";
repo = pname;
rev = "v${version}";
sha256 = "sha256-F0M5ENT3bMn3dD16Oaq9mBFYOWzVliVWupAIrLc2nkQ=";
};
doCheck = true;
2018-08-08 21:03:45 +02:00
checkInputs = [ perl ];
2021-09-06 16:08:42 +02:00
checkTarget = "all";
preCheck = "cd tests";
installPhase = ''
2021-09-06 16:08:42 +02:00
install -Dm644 $src/include/*.h -t $out/include
'';
meta = with 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;
};
}