summary refs log tree commit diff
path: root/pkgs/development/libraries/uthash/default.nix
blob: 7ddae062f7660ac4f9536b3ae9590175a456cd12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, stdenv, fetchurl, perl }:

let
  version = "2.1.0";
in
stdenv.mkDerivation {
  pname = "uthash";
  inherit 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 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;
  };
}