Merge pull request #2647 from crooney/master

cabal2nix derivation for haskellPackages.fayText
This commit is contained in:
Peter Simons 2014-05-15 18:12:24 +02:00
commit 485ad34b9c
2 changed files with 16 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;
};
})

View file

@ -700,6 +700,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
fayBase = callPackage ../development/libraries/haskell/fay-base {};
fayText = callPackage ../development/libraries/haskell/fay-text {};
fdoNotify = callPackage ../development/libraries/haskell/fdo-notify {};
filepath_1_3_0_2 = callPackage ../development/libraries/haskell/filepath/1.3.0.2.nix {};