3
0
Fork 0
forked from mirrors/nixpkgs

Added cppunit (kde4 needs it)

svn path=/nixpkgs/trunk/; revision=9387
This commit is contained in:
Yury G. Kudryashov 2007-10-01 15:09:29 +00:00
parent 82b608d93f
commit b11756b9e4
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
args: with args;
stdenv.mkDerivation {
name = "cppunit-1.12.0";
src = fetchurl {
url = mirror://sf/cppunit/cppunit-1.12.0.tar.gz;
sha256 = "07zyyx5dyai94y8r8va28971f5mw84mb93xx9pm6m4ddpj6c79cq";
};
configureFlags = "--enable-shared --disable-static";
}

View file

@ -1470,6 +1470,10 @@ rec {
inherit fetchurl stdenv;
};
cppunit = import ../development/libraries/cppunit {
inherit fetchurl stdenv;
};
cracklib = import ../development/libraries/cracklib {
inherit fetchurl stdenv;
};