nixpkgs/pkgs/development/libraries/haskell/shakespeare-css/default.nix

19 lines
577 B
Nix
Raw Normal View History

{ cabal, parsec, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-css";
version = "0.10.2";
sha256 = "181bknfws2s7jygy527w93v07i04xf1pwyfmylva59p0z45adlb4";
buildDepends = [ parsec shakespeare text ];
meta = {
homepage = "http://www.yesodweb.com/book/templates";
description = "Stick your haskell variables into css at compile time";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})