nixpkgs/pkgs/development/tools/haskell/cabal-bounds/default.nix

26 lines
815 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-08-14 20:52:41 +02:00
{ cabal, Cabal, cabalLenses, cmdargs, either, filepath, Glob, lens
, strict, tasty, tastyGolden, transformers, unorderedContainers
2014-03-18 13:40:16 +01:00
}:
cabal.mkDerivation (self: {
pname = "cabal-bounds";
2014-08-14 20:52:41 +02:00
version = "0.8.1";
sha256 = "19z596niwvjbjs8cp06zqkd29kn7chqkf60cdbr0ikyw8v4dcjw7";
2014-03-18 13:40:16 +01:00
isLibrary = true;
isExecutable = true;
buildDepends = [
Cabal cabalLenses cmdargs either lens strict transformers
unorderedContainers
2014-03-18 13:40:16 +01:00
];
2014-08-14 20:52:41 +02:00
testDepends = [ filepath Glob tasty tastyGolden ];
jailbreak = true;
doCheck = false;
2014-03-18 13:40:16 +01:00
meta = {
description = "A command line program for managing the bounds/versions of the dependencies in a cabal file";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})