nixpkgs/pkgs/development/libraries/haskell/hsini/default.nix

21 lines
613 B
Nix
Raw Normal View History

2014-03-04 10:29:30 +00:00
{ cabal, HUnit, mtl, parsec, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, testFrameworkTh
}:
cabal.mkDerivation (self: {
pname = "hsini";
2014-03-12 10:27:02 +00:00
version = "0.3.1";
sha256 = "06cys4i1nsic13dkp5jgammm3qykzizlnp6wdka2vl699rvnzaaf";
2014-03-04 10:29:30 +00:00
buildDepends = [ mtl parsec ];
testDepends = [
HUnit mtl parsec QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2 testFrameworkTh
];
jailbreak = true;
2014-03-04 10:29:30 +00:00
meta = {
description = "Package for user configuration files (INI)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})