* 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
@@ -1,11 +1,12 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, static ? false}:
stdenv.mkDerivation {
name = "device-mapper-1.02.13";
name = "device-mapper-1.02.20";
src = fetchurl {
url = ftp://sources.redhat.com/pub/dm/device-mapper.1.02.13.tgz;
md5 = "9ab13083a939ceb26ce5da6b625aeb3c";
url = ftp://sources.redhat.com/pub/dm/device-mapper.1.02.20.tgz;
sha256 = "2db8a8d402b6a827c5684919b4013444cb9fad50ab8cf7ca86ade9bea7796b1c";
};
configureFlags = if static then "--enable-static_link" else "";
# To prevent make install from failing.
installFlags = "OWNER= GROUP=";
}
+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\"";
}