mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-cake3: add version 0.3.0.1
This commit is contained in:
parent
aa86cc8a7c
commit
e825c6ac38
2 changed files with 25 additions and 0 deletions
23
pkgs/development/tools/haskell/cake3/default.nix
Normal file
23
pkgs/development/tools/haskell/cake3/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ cabal, attoparsec, deepseq, filepath, haskellSrcMeta
|
||||
, languageJavascript, mimeTypes, monadloc, mtl, optparseApplicative
|
||||
, syb, systemFilepath, text, textFormat
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cake3";
|
||||
version = "0.3.0.1";
|
||||
sha256 = "0s91kgfh6y14m60na7bsr41gzd573vra5c0mgp1a3pzngsj0cvhm";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
attoparsec deepseq filepath haskellSrcMeta languageJavascript
|
||||
mimeTypes monadloc mtl optparseApplicative syb systemFilepath text
|
||||
textFormat
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/grwlf/cake3";
|
||||
description = "Third cake the Makefile EDSL";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2816,6 +2816,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
BNFCMeta = callPackage ../development/tools/haskell/BNFC-meta {};
|
||||
|
||||
cake3 = callPackage ../development/tools/haskell/cake3 {};
|
||||
|
||||
cpphs = callPackage ../development/tools/misc/cpphs {};
|
||||
|
||||
Ebnf2ps = callPackage ../development/tools/parsing/Ebnf2ps {};
|
||||
|
|
Loading…
Reference in a new issue