2021-09-06 16:08:42 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, perl }:
|
2015-01-12 13:38:54 +01:00
|
|
|
|
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";
|
2015-01-12 13:38:54 +01:00
|
|
|
|
2021-09-06 16:08:42 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "troydhanson";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-F0M5ENT3bMn3dD16Oaq9mBFYOWzVliVWupAIrLc2nkQ=";
|
2015-01-12 13:38:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2015-01-12 13:38:54 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-09-06 16:08:42 +02:00
|
|
|
install -Dm644 $src/include/*.h -t $out/include
|
2015-01-12 13:38:54 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2015-01-12 13:38:54 +01:00
|
|
|
description = "A hash table for C structures";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://troydhanson.github.io/uthash";
|
2015-01-12 13:38:54 +01:00
|
|
|
license = licenses.bsd2; # it's one-clause, actually, as it's source-only
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|