* Get rid of references to losser.st-lab.cs.uu.nl.

svn path=/nixpkgs/trunk/; revision=13707
This commit is contained in:
Eelco Dolstra
2009-01-05 14:01:42 +00:00
parent 7e9eb1bf70
commit d15a5e9625
10 changed files with 32 additions and 51 deletions

View File

@@ -2,13 +2,21 @@
stdenv.mkDerivation {
name = "wxHaskell-0.10.1-pre20070124";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/wxhaskell-src-0.10.1-pre20070124.tar.bz2;
url = http://nixos.org/tarballs/wxhaskell-src-0.10.1-pre20070124.tar.bz2;
sha256 = "1cl0yd3blynjslzz05312bzg1dbymmj8pg88bhnr4p3rqxrlmhx9";
};
buildInputs = [unzip ghc wxGTK];
postInstall = "
postInstall = ''
make wx
make wx-install
";
'';
meta = {
homepage = http://haskell.org/haskellwiki/WxHaskell;
description = "A portable and native GUI library for Haskell";
};
}