mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
* added Haskell package gtk2hs
svn path=/nixpkgs/trunk/; revision=9651
This commit is contained in:
parent
c8e022a029
commit
93ce7c7a69
18
pkgs/development/libraries/haskell/gtk2hs/default.nix
Normal file
18
pkgs/development/libraries/haskell/gtk2hs/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{stdenv, fetchurl, pkgconfig, ghc, gtk, cairo, GConf, libglade
|
||||
, glib, libgtkhtml, gtkhtml}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gtk2hs-0.9.12.1";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/gtk2hs/gtk2hs-0.9.12.1.tar.gz;
|
||||
sha256 = "110z6v9gzhg6nzlz5gs8aafmipbva6rc50b8z1jgq0k2g25hfy22";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig ghc gtk glib cairo GConf libglade libgtkhtml gtkhtml];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-cairo"
|
||||
];
|
||||
|
||||
|
||||
}
|
@ -2410,6 +2410,11 @@ rec {
|
||||
|
||||
### DEVELOPMENT / LIBRARIES / HASKELL
|
||||
|
||||
gtk2hs = import ../development/libraries/haskell/gtk2hs {
|
||||
inherit pkgconfig stdenv fetchurl cairo;
|
||||
inherit (gnome) gtk glib GConf libglade libgtkhtml gtkhtml;
|
||||
ghc = ghc661;
|
||||
};
|
||||
|
||||
uulib64 = import ../development/libraries/haskell/uulib { # !!! remove?
|
||||
inherit stdenv fetchurl ghc;
|
||||
|
Loading…
Reference in New Issue
Block a user