mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
haskellPackages.fayBase: New expression
This commit is contained in:
parent
cb3f3ad35b
commit
e9b02facfc
15
pkgs/development/libraries/haskell/fay-base/default.nix
Normal file
15
pkgs/development/libraries/haskell/fay-base/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ cabal, fay }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "fay-base";
|
||||
version = "0.18.0.0";
|
||||
sha256 = "010zjcs4y0zdb4gijrw10sjc56i271s35bkwg5c0lblyr62nml0s";
|
||||
buildDepends = [ fay ];
|
||||
meta = {
|
||||
homepage = "https://github.com/faylang/fay-base";
|
||||
description = "The base package for Fay";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
||||
};
|
||||
})
|
@ -1037,6 +1037,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
executablePath = callPackage ../development/libraries/haskell/executable-path {};
|
||||
|
||||
fay = callPackage ../development/libraries/haskell/fay {};
|
||||
fayBase = callPackage ../development/libraries/haskell/fay-base {};
|
||||
|
||||
filepath_1_3_0_0 = callPackage ../development/libraries/haskell/filepath {};
|
||||
filepath = null; # a core package in recent GHCs
|
||||
|
Loading…
Reference in New Issue
Block a user