3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
542 B
Nix
17 lines
542 B
Nix
{ cabal, hspec, HUnit, pathPieces, text, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-routes";
|
|
version = "1.1.2";
|
|
sha256 = "17yv2z7k1s958xyn552wpk0cwpivsnkvia8477yhgbp4n2d1i5jv";
|
|
buildDepends = [ pathPieces text vector ];
|
|
testDepends = [ hspec HUnit pathPieces text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Efficient routing for Yesod";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|