summary refs log tree commit diff
path: root/pkgs/development/libraries/judy/default.nix
blob: 8c45adf4b570db81a9dee70b30396d11895f66c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "judy-1.0.5";

  src = fetchurl {
    url = mirror://sourceforge/judy/Judy-1.0.5.tar.gz;
    sha256 = "1sv3990vsx8hrza1mvq3bhvv9m6ff08y4yz7swn6znszz24l0w6j";
  };

  meta = {
    homepage = http://judy.sourceforge.net/;
    license = "LGPLv2.1+";
    description = "State-of-the-art C library that implements a sparse dynamic array";
  };
}