Merge pull request #2647 from crooney/master
cabal2nix derivation for haskellPackages.fayText
This commit is contained in:
commit
485ad34b9c
14
pkgs/development/libraries/haskell/fay-text/default.nix
Normal file
14
pkgs/development/libraries/haskell/fay-text/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
})
|
@ -700,6 +700,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||||||
|
|
||||||
fayBase = callPackage ../development/libraries/haskell/fay-base {};
|
fayBase = callPackage ../development/libraries/haskell/fay-base {};
|
||||||
|
|
||||||
|
fayText = callPackage ../development/libraries/haskell/fay-text {};
|
||||||
|
|
||||||
fdoNotify = callPackage ../development/libraries/haskell/fdo-notify {};
|
fdoNotify = callPackage ../development/libraries/haskell/fdo-notify {};
|
||||||
|
|
||||||
filepath_1_3_0_2 = callPackage ../development/libraries/haskell/filepath/1.3.0.2.nix {};
|
filepath_1_3_0_2 = callPackage ../development/libraries/haskell/filepath/1.3.0.2.nix {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user