16 lines
542 B
Nix
16 lines
542 B
Nix
{ cabal, hspec, HUnit, pathPieces, text, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-routes";
|
|
version = "1.2.0";
|
|
sha256 = "1d7z0v6jrl08w7qz3apwdjss3vq151y28l7231cpqiia46damib2";
|
|
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 ];
|
|
};
|
|
})
|