removed libixp-0.3 (wmiimenu does also build with 0.4)

wmii updated

svn path=/nixpkgs/trunk/; revision=12011
This commit is contained in:
Marc Weber
2008-06-08 21:41:07 +00:00
parent 2430f8e562
commit 620138ad0c
4 changed files with 19 additions and 27 deletions

View File

@@ -1,12 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libixp-0.3";
description = "libixp is a stand-alone client/server 9P library including ixpc client which behaves like wmiir in the past. Its server api is based heavily on Plan 9's lib9p";
builder = ./builder.sh;
src = fetchurl {
url = http://www.suckless.org/snaps/libixp-0.3.tar.gz;
md5 = "d341eb9c8f5d233aba5aa2ea8295ca91";
};
}

View File

@@ -3,16 +3,18 @@ stdenv.mkDerivation {
name = "libixp_for_wmii";
phases = "unpackPhase installPhase";
installPhase = "
export LDFLAGS\=$(echo \$NIX_LDFLAGS | sed -e 's/-rpath/-L/g')
sed -i -e \"s%^PREFIX.*%PREFIX=\$out%\" \\
-e \"s%^\\(INCLUDE.*\\)%\\1 \$NIX_CFLAGS_COMPILE%\" \\
-e \"s%^\\(LIBS.*\\)%\\1 \$LDFLAGS%\" \\
config.mk
make install
make
mkdir -p \$out/include
cp -r include/*.h \$out/include
cp -r lib \$out
";
src = fetchurl {
url = http://www.suckless.org/snaps/libixp-20070220.tar.gz;
sha256 = "0bhqgrxp0lnwyf3c9165nldyw300mifyh0mlyfg1i5qr54rk7p79";
url = http://www.suckless.org/download/libixp-0.4.tar.gz;
sha256 = "0b44p9wvmzxpyf2xd86rxyr49bmfh9cd5hj3d234gkvynvgph60p";
};
}