* ncurses: added symlinks for bynary packages linked against libncurses. Tested

with ghc. I will add 'unicode' option next check in (for cygwin).
* pidgin:  Got rid of builder.sh, added ncurses to the dependencies, so it builds
           finch.
* xorg:    Added glproto and mesaHeaders to xf86videosis dependencies. Now it
           compiles.
* pwgen:   Added.
* device-mapper: Version bump. Added 'static' option for use in initrd.
* lvm2:          Version bump. Added 'static' option for use in initrd.

svn path=/nixpkgs/trunk/; revision=8923
This commit is contained in:
Yury G. Kudryashov
2007-06-28 09:53:12 +00:00
parent d80093f2ff
commit 40657fbece
8 changed files with 45 additions and 25 deletions
+5 -4
View File
@@ -1,12 +1,13 @@
{stdenv, fetchurl, devicemapper}:
{stdenv, fetchurl, devicemapper, static ? false}:
stdenv.mkDerivation {
name = "lvm2-2.02.17";
name = "lvm2-2.02.26";
src = fetchurl {
url = ftp://sources.redhat.com/pub/lvm2/old/LVM2.2.02.17.tgz;
sha256 = "12bbr0rg5cmysmdvz6pv2fz9yhcff3fmivdcy2qaxn4p412255sj";
url = ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.26.tgz;
sha256 = "6a177953f1a81aff91144b6bea8eb5f73f6139b10bffd5946c22a32f586ab899";
};
buildInputs = [devicemapper];
configureFlags = if static then "--enable-static_link" else "";
# To prevent make install from failing.
preInstall = "installFlags=\"OWNER= GROUP= confdir=$out/etc\"";
}