Skip to content
Snippets Groups Projects
Commit 36e60845 authored by Daniel Firth's avatar Daniel Firth
Browse files

gtk2hs-buildtools: init at 0.13.8.3

parent cdce8de5
No related merge requests found
......@@ -382,6 +382,7 @@ let packages =
, gitrev = H.callHackage "gitrev" "1.3.1"
, gridtables = H.callHackage "gridtables" "0.1.0.0"
, groups = H.callHackage "groups" "0.5.3"
, gtk2hs-buildtools = H.callHackage "gtk2hs-buildtools" "0.13.8.3"
, hackage-db = H.callHackage "hackage-db" "2.1.2"
, hackage-security = H.callHackage "hackage-security" "0.6.2.2"
, haddock-library = H.callHackage "haddock-library" "1.11.0"
......
......@@ -569,6 +569,8 @@ self: with pkgs.haskell.lib; {
groups = self.callPackage (./pkgs/groups.nix) { };
gtk2hs-buildtools = self.callPackage (./pkgs/gtk2hs-buildtools.nix) { };
hackage-db = self.callPackage (./pkgs/hackage-db.nix) { };
hackage-security = self.callPackage (./pkgs/hackage-security.nix) { };
......
{ mkDerivation
, Cabal
, alex
, array
, base
, containers
, directory
, filepath
, happy
, hashtables
, lib
, pretty
, process
, random
}:
mkDerivation {
pname = "gtk2hs-buildtools";
version = "0.13.8.3";
sha256 = "3b0344e4ce5774ca50f0fa5e0c930f282ca84c50317e6f1148325528c6069539";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array
base
Cabal
containers
directory
filepath
hashtables
pretty
process
random
];
libraryToolDepends = [ alex happy ];
executableHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Tools to build the Gtk2Hs suite of User Interface libraries";
license = lib.licenses.gpl2Only;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment