2009-04-18 12:47:11 +00:00
|
|
|
{pkgs, ghc}:
|
|
|
|
|
2009-04-25 14:23:00 +00:00
|
|
|
let ghcReal = pkgs.lowPrio ghc; in
|
2009-04-18 12:47:11 +00:00
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2009-04-18 20:24:36 +00:00
|
|
|
inherit ghcReal;
|
|
|
|
|
|
|
|
# In the remainder, `ghc' refers to the wrapper. This is because
|
|
|
|
# it's never useful to use the wrapped GHC (`ghcReal'), as the
|
|
|
|
# wrapper provides essential functionality: the ability to find
|
|
|
|
# Haskell packages in the buildInputs automatically.
|
2009-04-18 12:47:11 +00:00
|
|
|
ghc = import ../development/compilers/ghc/wrapper.nix {
|
2009-04-25 14:23:00 +00:00
|
|
|
inherit (pkgs) stdenv makeWrapper;
|
2009-04-18 20:24:36 +00:00
|
|
|
ghc = ghcReal;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cabal = import ../development/libraries/haskell/cabal/cabal.nix {
|
2009-04-23 17:21:14 +00:00
|
|
|
inherit (pkgs) stdenv fetchurl lib;
|
2009-04-18 12:47:11 +00:00
|
|
|
inherit ghc;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Haskell libraries.
|
|
|
|
|
2009-04-21 21:05:30 +00:00
|
|
|
# Agda depends on a specific version of QuickCheck
|
|
|
|
Agda = import ../development/libraries/haskell/Agda {
|
|
|
|
inherit cabal binary haskeline haskellSrc mtl utf8String xhtml zlib
|
|
|
|
happy alex;
|
|
|
|
QuickCheck = QuickCheck2101;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
benchpress = import ../development/libraries/haskell/benchpress {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
|
|
|
binary = import ../development/libraries/haskell/binary {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
cgi = import ../development/libraries/haskell/cgi {
|
|
|
|
inherit cabal mtl network parsec xhtml;
|
|
|
|
};
|
|
|
|
|
2009-06-12 13:39:05 +00:00
|
|
|
convertible = import ../development/libraries/haskell/convertible {
|
|
|
|
inherit cabal mtl;
|
|
|
|
time = time113;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
Crypto = import ../development/libraries/haskell/Crypto {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-23 17:48:03 +00:00
|
|
|
dataenc = import ../development/libraries/haskell/dataenc {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-06-01 12:39:55 +00:00
|
|
|
dotgen = import ../development/libraries/haskell/dotgen {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
editline = import ../development/libraries/haskell/editline {
|
|
|
|
inherit (pkgs) libedit;
|
|
|
|
inherit cabal;
|
|
|
|
};
|
2009-04-19 11:44:37 +00:00
|
|
|
|
2009-05-12 07:06:13 +00:00
|
|
|
emgm = import ../development/libraries/haskell/emgm {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-21 21:05:30 +00:00
|
|
|
extensibleExceptions = import ../development/libraries/haskell/extensible-exceptions {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
fgl = import ../development/libraries/haskell/fgl {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
2009-04-19 13:38:34 +00:00
|
|
|
|
|
|
|
ghcPaths = import ../development/libraries/haskell/ghc-paths {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
2009-04-19 16:26:27 +00:00
|
|
|
|
|
|
|
GLUT = import ../development/libraries/haskell/GLUT {
|
|
|
|
inherit cabal OpenGL;
|
|
|
|
glut = pkgs.freeglut;
|
2009-04-21 21:05:30 +00:00
|
|
|
inherit (pkgs) mesa;
|
|
|
|
inherit (pkgs.xlibs) libSM libICE libXmu libXi;
|
2009-04-19 16:26:27 +00:00
|
|
|
};
|
2009-04-18 12:47:11 +00:00
|
|
|
|
|
|
|
gtk2hs = import ../development/libraries/haskell/gtk2hs {
|
2009-04-19 13:58:13 +00:00
|
|
|
inherit ghc mtl;
|
|
|
|
inherit (pkgs) stdenv fetchurl pkgconfig gnome cairo;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
2009-04-19 11:44:37 +00:00
|
|
|
|
2009-04-21 21:05:30 +00:00
|
|
|
haskeline = import ../development/libraries/haskell/haskeline {
|
|
|
|
inherit cabal extensibleExceptions mtl utf8String;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
haskellSrc = import ../development/libraries/haskell/haskell-src {
|
|
|
|
inherit cabal happy;
|
|
|
|
};
|
2009-04-20 00:18:51 +00:00
|
|
|
|
|
|
|
haskellSrcExts = import ../development/libraries/haskell/haskell-src-exts {
|
|
|
|
inherit cabal cpphs happy;
|
|
|
|
};
|
|
|
|
|
|
|
|
haskellSrcMeta = import ../development/libraries/haskell/haskell-src-meta {
|
|
|
|
inherit cabal haskellSrcExts;
|
|
|
|
};
|
2009-04-18 12:47:11 +00:00
|
|
|
|
2009-04-19 19:18:07 +00:00
|
|
|
haskellPlatform = import ../development/libraries/haskell/haskell-platform {
|
2009-06-03 08:44:41 +00:00
|
|
|
inherit cabal GLUT HTTP HUnit OpenGL QuickCheck cgi fgl editline
|
2009-04-19 19:18:07 +00:00
|
|
|
haskellSrc html parallel regexBase regexCompat regexPosix
|
|
|
|
stm time xhtml zlib cabalInstall alex happy haddock;
|
2009-04-20 14:23:50 +00:00
|
|
|
ghc = ghcReal;
|
2009-04-19 19:18:07 +00:00
|
|
|
inherit (pkgs) fetchurl;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
HTTP = import ../development/libraries/haskell/HTTP {
|
2009-04-19 13:21:40 +00:00
|
|
|
inherit cabal mtl network parsec;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
haxr = import ../development/libraries/haskell/haxr {
|
2009-04-23 17:48:03 +00:00
|
|
|
inherit cabal HaXml HTTP dataenc time;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
haxr_th = import ../development/libraries/haskell/haxr-th {
|
|
|
|
inherit cabal haxr HaXml HTTP;
|
|
|
|
};
|
|
|
|
|
|
|
|
HaXml = import ../development/libraries/haskell/HaXml {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-06-12 13:39:05 +00:00
|
|
|
HDBC = import ../development/libraries/haskell/HDBC/HDBC.nix {
|
|
|
|
inherit cabal HUnit QuickCheck mtl time utf8String convertible testpack;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
2009-06-12 13:39:05 +00:00
|
|
|
HDBCPostgresql = import ../development/libraries/haskell/HDBC/HDBC-postgresql.nix {
|
|
|
|
inherit cabal HDBC parsec;
|
2009-04-18 12:47:11 +00:00
|
|
|
inherit (pkgs) postgresql;
|
|
|
|
};
|
|
|
|
|
2009-06-12 13:39:05 +00:00
|
|
|
HDBCSqlite = import ../development/libraries/haskell/HDBC/HDBC-sqlite3.nix {
|
2009-04-18 12:47:11 +00:00
|
|
|
inherit cabal HDBC;
|
|
|
|
inherit (pkgs) sqlite;
|
|
|
|
};
|
|
|
|
|
2009-05-04 13:33:01 +00:00
|
|
|
Hipmunk = import ../development/libraries/haskell/Hipmunk {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-21 21:48:10 +00:00
|
|
|
hscolour = import ../development/libraries/haskell/hscolour {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 10:07:41 +00:00
|
|
|
html = import ../development/libraries/haskell/html {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
HUnit = import ../development/libraries/haskell/HUnit {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-05-13 19:02:23 +00:00
|
|
|
ivor = import ../development/libraries/haskell/ivor {
|
|
|
|
inherit cabal mtl parsec;
|
|
|
|
};
|
|
|
|
|
2009-05-05 23:06:01 +00:00
|
|
|
json = import ../development/libraries/haskell/json {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
maybench = import ../development/libraries/haskell/maybench {
|
|
|
|
inherit cabal benchpress;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
monadlab = import ../development/libraries/haskell/monadlab {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-25 15:33:37 +00:00
|
|
|
MonadRandom = import ../development/libraries/haskell/MonadRandom {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
|
|
|
|
2009-04-19 10:07:41 +00:00
|
|
|
mtl = import ../development/libraries/haskell/mtl {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 23:25:58 +00:00
|
|
|
multirec = import ../development/libraries/haskell/multirec {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
network = import ../development/libraries/haskell/network {
|
|
|
|
inherit cabal parsec;
|
|
|
|
};
|
|
|
|
|
2009-05-15 18:53:00 +00:00
|
|
|
nonNegative = import ../development/libraries/haskell/non-negative {
|
|
|
|
inherit cabal QuickCheck;
|
|
|
|
};
|
|
|
|
|
|
|
|
numericPrelude = import ../development/libraries/haskell/numeric-prelude {
|
|
|
|
inherit cabal HUnit QuickCheck parsec nonNegative utilityHt;
|
|
|
|
};
|
|
|
|
|
2009-04-19 16:26:27 +00:00
|
|
|
OpenAL = import ../development/libraries/haskell/OpenAL {
|
|
|
|
inherit cabal OpenGL;
|
|
|
|
inherit (pkgs) openal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 15:56:45 +00:00
|
|
|
OpenGL = import ../development/libraries/haskell/OpenGL {
|
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) mesa;
|
|
|
|
inherit (pkgs.xlibs) libX11;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
parallel = import ../development/libraries/haskell/parallel {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 10:07:41 +00:00
|
|
|
parsec = import ../development/libraries/haskell/parsec {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
pcreLight = import ../development/libraries/haskell/pcre-light {
|
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) pcre;
|
|
|
|
};
|
|
|
|
|
2009-04-21 21:05:30 +00:00
|
|
|
QuickCheck = QuickCheck1;
|
|
|
|
QuickCheck1 = QuickCheck1200;
|
|
|
|
QuickCheck2 = QuickCheck2101;
|
|
|
|
|
|
|
|
QuickCheck1200 = import ../development/libraries/haskell/QuickCheck {
|
2009-04-19 11:44:37 +00:00
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-21 21:05:30 +00:00
|
|
|
QuickCheck2101 = import ../development/libraries/haskell/QuickCheck/2.1.0.1.nix {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
|
|
|
|
2009-04-21 21:12:56 +00:00
|
|
|
readline = import ../development/libraries/haskell/readline {
|
|
|
|
inherit cabal;
|
2009-05-28 19:06:33 +00:00
|
|
|
inherit (pkgs) readline ncurses;
|
2009-04-21 21:12:56 +00:00
|
|
|
};
|
|
|
|
|
2009-04-19 10:07:41 +00:00
|
|
|
regexBase = import ../development/libraries/haskell/regex-base {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
|
|
|
|
|
|
|
regexCompat = import ../development/libraries/haskell/regex-compat {
|
|
|
|
inherit cabal regexBase regexPosix;
|
|
|
|
};
|
|
|
|
|
|
|
|
regexPosix = import ../development/libraries/haskell/regex-posix {
|
|
|
|
inherit cabal regexBase;
|
|
|
|
};
|
|
|
|
|
2009-04-25 15:33:29 +00:00
|
|
|
SDLImage = import ../development/libraries/haskell/SDL-image {
|
|
|
|
inherit cabal SDL;
|
|
|
|
inherit (pkgs) SDL_image;
|
|
|
|
};
|
|
|
|
|
|
|
|
SDLMixer = import ../development/libraries/haskell/SDL-mixer {
|
|
|
|
inherit cabal SDL;
|
|
|
|
inherit (pkgs) SDL_mixer;
|
|
|
|
};
|
|
|
|
|
|
|
|
SDLTtf = import ../development/libraries/haskell/SDL-ttf {
|
|
|
|
inherit cabal SDL;
|
|
|
|
inherit (pkgs) SDL_ttf;
|
|
|
|
};
|
|
|
|
|
|
|
|
SDL = import ../development/libraries/haskell/SDL {
|
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) SDL;
|
|
|
|
};
|
|
|
|
|
2009-05-28 19:06:33 +00:00
|
|
|
Shellac = import ../development/libraries/haskell/Shellac/Shellac.nix {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
|
|
|
|
|
|
|
ShellacHaskeline = import ../development/libraries/haskell/Shellac/Shellac-haskeline.nix {
|
|
|
|
inherit cabal Shellac haskeline;
|
|
|
|
};
|
|
|
|
|
|
|
|
ShellacReadline = import ../development/libraries/haskell/Shellac/Shellac-readline.nix {
|
|
|
|
inherit cabal Shellac readline;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
stm = import ../development/libraries/haskell/stm {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-05-15 18:53:00 +00:00
|
|
|
storableComplex = import ../development/libraries/haskell/storable-complex {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-20 13:01:31 +00:00
|
|
|
strictConcurrency = import ../development/libraries/haskell/strictConcurrency {
|
|
|
|
inherit cabal parallel;
|
|
|
|
};
|
|
|
|
|
2009-06-10 16:27:39 +00:00
|
|
|
terminfo = import ../development/libraries/haskell/terminfo {
|
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) ncurses;
|
|
|
|
};
|
|
|
|
|
2009-06-12 13:39:05 +00:00
|
|
|
testpack = import ../development/libraries/haskell/testpack {
|
|
|
|
inherit cabal HUnit QuickCheck mtl;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* time is Haskell Platform default, time113 is more recent but incompatible */
|
2009-04-19 13:21:40 +00:00
|
|
|
time = import ../development/libraries/haskell/time {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-06-12 13:39:05 +00:00
|
|
|
time113 = import ../development/libraries/haskell/time/1.1.3.nix {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-21 21:48:10 +00:00
|
|
|
uniplate = import ../development/libraries/haskell/uniplate {
|
|
|
|
inherit cabal mtl;
|
|
|
|
};
|
|
|
|
|
2009-04-20 14:30:01 +00:00
|
|
|
utf8String = import ../development/libraries/haskell/utf8-string {
|
2009-04-19 13:58:13 +00:00
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-05-15 18:53:00 +00:00
|
|
|
utilityHt = import ../development/libraries/haskell/utility-ht {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
uulib = import ../development/libraries/haskell/uulib {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-05-15 18:52:55 +00:00
|
|
|
uuParsingLib = import ../development/libraries/haskell/uu-parsinglib {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-20 13:01:31 +00:00
|
|
|
vacuum = import ../development/libraries/haskell/vacuum {
|
|
|
|
inherit cabal ghcPaths haskellSrcMeta;
|
|
|
|
};
|
|
|
|
|
2009-06-12 13:11:37 +00:00
|
|
|
vacuumCairo = import ../development/libraries/haskell/vacuum-cairo {
|
2009-04-20 13:01:31 +00:00
|
|
|
inherit cabal vacuum gtk2hs parallel strictConcurrency;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
vty = import ../development/libraries/haskell/vty {
|
2009-06-10 16:27:39 +00:00
|
|
|
inherit cabal utf8String terminfo;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
2009-05-04 13:33:04 +00:00
|
|
|
wx = import ../development/libraries/haskell/wxHaskell/wx.nix {
|
|
|
|
inherit cabal stm wxcore;
|
2009-04-20 13:01:31 +00:00
|
|
|
};
|
2009-05-04 13:32:59 +00:00
|
|
|
|
|
|
|
wxcore = import ../development/libraries/haskell/wxHaskell/wxcore.nix {
|
|
|
|
inherit cabal time parsec stm;
|
|
|
|
wxGTK = pkgs.wxGTK28;
|
|
|
|
inherit (pkgs) mesa;
|
|
|
|
inherit (pkgs.xlibs) libX11;
|
|
|
|
};
|
2009-04-20 13:01:31 +00:00
|
|
|
|
2009-04-19 10:07:41 +00:00
|
|
|
X11 = import ../development/libraries/haskell/X11 {
|
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs.xlibs) libX11 libXinerama libXext;
|
|
|
|
xineramaSupport = true;
|
|
|
|
};
|
|
|
|
|
2009-04-19 11:44:37 +00:00
|
|
|
xhtml = import ../development/libraries/haskell/xhtml {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-05-12 07:06:13 +00:00
|
|
|
zipper = import ../development/libraries/haskell/zipper {
|
|
|
|
inherit cabal multirec;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
zlib = import ../development/libraries/haskell/zlib {
|
2009-04-19 13:21:40 +00:00
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) zlib;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Compilers.
|
|
|
|
|
|
|
|
ehc = import ../development/compilers/ehc {
|
2009-04-18 15:23:00 +00:00
|
|
|
inherit ghc uulib uuagc;
|
|
|
|
inherit (pkgs) fetchsvn stdenv coreutils m4 libtool llvm;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
2009-04-19 10:27:22 +00:00
|
|
|
helium = import ../development/compilers/helium {
|
|
|
|
inherit ghc;
|
|
|
|
inherit (pkgs) fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2009-05-15 18:52:55 +00:00
|
|
|
idris = import ../development/compilers/idris {
|
|
|
|
inherit cabal mtl parsec readline ivor happy;
|
|
|
|
inherit (pkgs) fetchdarcs;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
|
|
|
|
# Development tools.
|
|
|
|
|
|
|
|
alex = import ../development/tools/parsing/alex {
|
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) perl;
|
|
|
|
};
|
|
|
|
|
2009-04-20 00:18:51 +00:00
|
|
|
cpphs = import ../development/tools/misc/cpphs {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
2009-04-19 10:27:22 +00:00
|
|
|
frown = import ../development/tools/parsing/frown {
|
|
|
|
inherit ghc;
|
|
|
|
inherit (pkgs) fetchurl stdenv;
|
|
|
|
};
|
|
|
|
|
2009-04-19 19:18:07 +00:00
|
|
|
haddock = haddock242;
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
# old version of haddock, still more stable than 2.0
|
|
|
|
haddock09 = import ../development/tools/documentation/haddock/haddock-0.9.nix {
|
|
|
|
inherit cabal;
|
|
|
|
};
|
|
|
|
|
|
|
|
# does not compile with ghc-6.8.3
|
|
|
|
haddock210 = pkgs.stdenv.lib.lowPrio (import ../development/tools/documentation/haddock/haddock-2.1.0.nix {
|
|
|
|
inherit cabal;
|
|
|
|
});
|
|
|
|
|
2009-04-19 13:38:34 +00:00
|
|
|
haddock242 = import ../development/tools/documentation/haddock/haddock-2.4.2.nix {
|
|
|
|
inherit cabal ghcPaths;
|
2009-04-19 19:18:07 +00:00
|
|
|
inherit (pkgs) libedit;
|
2009-04-19 13:38:34 +00:00
|
|
|
};
|
|
|
|
|
2009-06-03 08:44:41 +00:00
|
|
|
happy = happy1184;
|
2009-04-19 11:44:37 +00:00
|
|
|
|
|
|
|
happy117 = import ../development/tools/parsing/happy/happy-1.17.nix {
|
2009-04-18 12:47:11 +00:00
|
|
|
inherit cabal;
|
|
|
|
inherit (pkgs) perl;
|
|
|
|
};
|
|
|
|
|
2009-06-03 08:44:41 +00:00
|
|
|
happy1184 = import ../development/tools/parsing/happy/happy-1.18.4.nix {
|
2009-04-19 11:44:37 +00:00
|
|
|
inherit cabal mtl;
|
|
|
|
inherit (pkgs) perl;
|
|
|
|
};
|
2009-04-21 21:48:10 +00:00
|
|
|
|
|
|
|
hlint = import ../development/tools/haskell/hlint {
|
|
|
|
inherit cabal haskellSrcExts mtl uniplate hscolour;
|
|
|
|
};
|
2009-04-18 12:47:11 +00:00
|
|
|
|
2009-04-19 23:25:58 +00:00
|
|
|
uuagc = import ../development/tools/haskell/uuagc {
|
|
|
|
inherit cabal uulib;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
# Applications.
|
|
|
|
|
2009-04-18 15:42:59 +00:00
|
|
|
darcs = import ../applications/version-management/darcs/darcs-2.nix {
|
2009-04-19 10:07:41 +00:00
|
|
|
inherit cabal html mtl parsec regexCompat;
|
|
|
|
inherit (pkgs) zlib curl;
|
2009-04-18 15:42:59 +00:00
|
|
|
};
|
|
|
|
|
2009-04-19 13:58:13 +00:00
|
|
|
leksah = import ../applications/editors/leksah {
|
2009-04-20 14:23:50 +00:00
|
|
|
inherit cabal gtk2hs binary parsec regexPosix utf8String;
|
2009-04-19 19:06:34 +00:00
|
|
|
inherit (pkgs) libedit makeWrapper;
|
2009-04-19 13:58:13 +00:00
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
xmobar = import ../applications/misc/xmobar {
|
2009-04-20 13:01:34 +00:00
|
|
|
inherit cabal X11 mtl parsec stm;
|
2009-04-18 12:47:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
xmonad = import ../applications/window-managers/xmonad {
|
2009-04-20 13:01:34 +00:00
|
|
|
inherit cabal X11 mtl;
|
2009-04-18 12:47:11 +00:00
|
|
|
inherit (pkgs.xlibs) xmessage;
|
|
|
|
};
|
|
|
|
|
|
|
|
xmonadContrib = import ../applications/window-managers/xmonad/xmonad-contrib.nix {
|
|
|
|
inherit cabal xmonad X11;
|
|
|
|
};
|
|
|
|
|
2009-04-19 10:27:22 +00:00
|
|
|
|
|
|
|
# Tools.
|
|
|
|
|
2009-04-19 13:21:40 +00:00
|
|
|
cabalInstall = import ../tools/package-management/cabal-install {
|
|
|
|
inherit cabal HTTP network zlib;
|
|
|
|
};
|
|
|
|
|
2009-04-19 10:27:22 +00:00
|
|
|
lhs2tex = import ../tools/typesetting/lhs2tex {
|
2009-04-20 14:23:50 +00:00
|
|
|
inherit cabal regexCompat utf8String;
|
|
|
|
inherit (pkgs) tetex polytable;
|
2009-04-19 10:27:22 +00:00
|
|
|
};
|
|
|
|
|
2009-05-15 18:52:55 +00:00
|
|
|
# Games.
|
|
|
|
|
|
|
|
MazesOfMonad = import ../games/MazesOfMonad {
|
|
|
|
inherit cabal HUnit mtl regexPosix time;
|
|
|
|
};
|
|
|
|
|
2009-04-18 12:47:11 +00:00
|
|
|
}
|