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

cabal.mkDerivation (self: {
  pname = "ConfigFile";
  version = "1.1.1";
  sha256 = "0w2yhbnqldhmj3d98j720l4lj4d08abqcff751p2slszdm5pw1jm";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ Cabal MissingH mtl parsec ];
  noHaddock = true;
  meta = {
    homepage = "http://software.complete.org/configfile";
    description = "Configuration file reading & writing";
    license = "LGPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})