summary refs log tree commit diff
path: root/pkgs/development/libraries/boolstuff/default.nix
blob: c1bd8a4b3a2a5c34b1ae7c03a3151802f575ef77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig }:

let baseurl = "http://perso.b2b2c.ca/sarrazip/dev"; in

stdenv.mkDerivation rec {
  name = "boolstuff-0.1.14";

  src = fetchurl {
    url = "${baseurl}/${name}.tar.gz";
    sha256 = "1ccn9v3kxz44pv3mr8q0l2i9769jiigw1gfv47ia50mbspwb87r6";
  };

  nativeBuildInputs = [ pkgconfig ];

  meta = { 
    description = "Library for operations on boolean expression binary trees";
    homepage = "${baseurl}/boolstuff.html";
    license = "GPL";
    maintainers = [ stdenv.lib.maintainers.marcweber ];
    platforms = stdenv.lib.platforms.linux;
  };
}