1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/development/tools/haskell/cabal-bounds/default.nix

24 lines
727 B
Nix
Raw Normal View History

{ cabal, Cabal, cabalLenses, cmdargs, either, filepath, lens
, strict, tasty, tastyGolden, transformers, unorderedContainers
2014-03-18 12:40:16 +00:00
}:
cabal.mkDerivation (self: {
pname = "cabal-bounds";
version = "0.6";
sha256 = "0dl8rf8y365a20yz5kk1c9y860k5mkg1jp5dipvbf451h7a7h9w5";
2014-03-18 12:40:16 +00:00
isLibrary = true;
isExecutable = true;
buildDepends = [
Cabal cabalLenses cmdargs either lens strict transformers
unorderedContainers
2014-03-18 12:40:16 +00:00
];
testDepends = [ filepath tasty tastyGolden ];
jailbreak = true;
doCheck = false;
2014-03-18 12:40:16 +00: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;
};
})