mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
5048bc7f21
svn path=/nixpkgs/trunk/; revision=29529
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.2";
|
|
sha256 = "03qlnclpg72iflry1xlkd0sxqm6nybvx113la9r0cmsnz17y546a";
|
|
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
|
|
];
|
|
};
|
|
})
|