about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hsini/default.nix
blob: 52d8a26c92a8407bd9a01018fb6680e3a0b84627 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, HUnit, mtl, parsec, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, testFrameworkTh
}:

cabal.mkDerivation (self: {
  pname = "hsini";
  version = "0.3.1";
  sha256 = "06cys4i1nsic13dkp5jgammm3qykzizlnp6wdka2vl699rvnzaaf";
  buildDepends = [ mtl parsec ];
  testDepends = [
    HUnit mtl parsec QuickCheck testFramework testFrameworkHunit
    testFrameworkQuickcheck2 testFrameworkTh
  ];
  jailbreak = true;
  meta = {
    description = "Package for user configuration files (INI)";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})