summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ConfigFile/default.nix
blob: 7598ba9c512dd8da47c3773c616be295ad6a1764 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, mtl, parsec, MissingH}:

cabal.mkDerivation (self : {
  pname = "ConfigFile";
  version = "1.0.6";
  sha256 = "339722184b86d53d8b361933e572b6e1478824c7eba3fb66b67d0eb5245cd038";
  propagatedBuildInputs = [mtl parsec MissingH];
  meta = {
    description = "Configuration file reading & writing";
    license = "LGPL";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})