mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
adding boolstuff
svn path=/nixpkgs/trunk/; revision=17026
This commit is contained in:
parent
059b19e693
commit
5d39e92acc
19
pkgs/development/libraries/boolstuff/default.nix
Normal file
19
pkgs/development/libraries/boolstuff/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "boolstuff-0.1.12";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://perso.b2b2c.ca/sarrazip/dev/boolstuff-0.1.12.tar.gz;
|
||||
sha256 = "0h39civar6fjswaf3bn1r2ddj589rya0prd6gzsyv3qzr9srprq9";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig];
|
||||
|
||||
meta = {
|
||||
description = "operations on boolean expression binary trees";
|
||||
homepage = http://perso.b2b2c.ca/sarrazip/dev/boolstuff.html;
|
||||
license = "GPL";
|
||||
maintainers = [args.lib.maintainers.marcweber];
|
||||
platforms = args.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -2855,6 +2855,10 @@ let
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
boolstuff = import ../development/libraries/boolstuff {
|
||||
inherit fetchurl stdenv lib pkgconfig;
|
||||
};
|
||||
|
||||
boost_1_36_0 = import ../development/libraries/boost/1.36.0.nix {
|
||||
inherit fetchurl stdenv icu expat zlib bzip2 python;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue