cabal2nix derivation for haskellPackages.fayText

This commit is contained in:
Chris Rooney 2014-05-14 16:46:51 -04:30
parent 432998852c
commit a50fc668c1
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ cabal, fay, fayBase, text }:
cabal.mkDerivation (self: {
pname = "fay-text";
version = "0.3.0.1";
sha256 = "1bwsnhrj94j8jks5nhb0al8mymcgn2lp1pj9q7n935ygkzsaasbm";
buildDepends = [ fay fayBase text ];
meta = {
homepage = "https://github.com/faylang/fay-text";
description = "Fay Text type represented as JavaScript strings";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})