16 lines
481 B
Nix
16 lines
481 B
Nix
{ cabal, pathPieces, text, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-routes";
|
|
version = "1.1.1.1";
|
|
sha256 = "10cy50dnhbhwi0yspq0x06gzqpmhkalqq1sww2wjpv13hp53pq3m";
|
|
buildDepends = [ pathPieces text vector ];
|
|
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 ];
|
|
};
|
|
})
|