468c5dbc5c
versions of the compiler, haskell-packages.nix provides a null attribute. svn path=/nixpkgs/trunk/; revision=28500
26 lines
672 B
Nix
26 lines
672 B
Nix
{ cabal, extensibleExceptions, hslogger, mtl, network, parsec
|
|
, random, time, unixCompat
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "happstack-util";
|
|
version = "6.0.0";
|
|
sha256 = "06qla74kb58q0rvlfa9k16s4crnylq99hm80xx4phlddyzn0cy4z";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
extensibleExceptions hslogger mtl network parsec random time
|
|
unixCompat
|
|
];
|
|
meta = {
|
|
homepage = "http://happstack.com";
|
|
description = "Web framework";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|