nixpkgs/pkgs/development/libraries/haskell/wxHaskell/default.nix
Eelco Dolstra d15a5e9625 * Get rid of references to losser.st-lab.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=13707
2009-01-05 14:01:42 +00:00

23 lines
518 B
Nix

{stdenv, fetchurl, unzip, ghc, wxGTK}:
stdenv.mkDerivation {
name = "wxHaskell-0.10.1-pre20070124";
src = fetchurl {
url = http://nixos.org/tarballs/wxhaskell-src-0.10.1-pre20070124.tar.bz2;
sha256 = "1cl0yd3blynjslzz05312bzg1dbymmj8pg88bhnr4p3rqxrlmhx9";
};
buildInputs = [unzip ghc wxGTK];
postInstall = ''
make wx
make wx-install
'';
meta = {
homepage = http://haskell.org/haskellwiki/WxHaskell;
description = "A portable and native GUI library for Haskell";
};
}