haskell-cabal-cargs: add version 0.6.1
This commit is contained in:
parent
6071b304ef
commit
766d934090
23
pkgs/development/libraries/haskell/cabal-cargs/default.nix
Normal file
23
pkgs/development/libraries/haskell/cabal-cargs/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ cabal, Cabal, cabalLenses, cmdargs, either, filepath, lens
|
||||
, strict, systemFileio, systemFilepath, tasty, tastyGolden, text
|
||||
, transformers, unorderedContainers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cabal-cargs";
|
||||
version = "0.6.1";
|
||||
sha256 = "1bf903kgs16f054crwq0yyp6ijch80qn3d5ksy4j0fnyxxrdqvsa";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
Cabal cabalLenses cmdargs either lens strict systemFileio
|
||||
systemFilepath text transformers unorderedContainers
|
||||
];
|
||||
testDepends = [ filepath tasty tastyGolden ];
|
||||
meta = {
|
||||
description = "A command line program for extracting compiler arguments from a cabal file";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.tomberek ];
|
||||
};
|
||||
})
|
@ -326,6 +326,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
Cabal_1_20_0_1 = callPackage ../development/libraries/haskell/Cabal/1.20.0.1.nix {};
|
||||
Cabal = null; # core package since forever
|
||||
|
||||
cabalCargs = callPackage ../development/libraries/haskell/cabal-cargs {};
|
||||
|
||||
cabalFileTh = callPackage ../development/libraries/haskell/cabal-file-th {};
|
||||
|
||||
cabalLenses = callPackage ../development/libraries/haskell/cabal-lenses {};
|
||||
|
Loading…
Reference in New Issue
Block a user