3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/configurator/default.nix
2012-12-23 20:14:43 +01:00

19 lines
506 B
Nix

{ cabal, attoparsec, hashable, text, unixCompat
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "configurator";
version = "0.2.0.2";
sha256 = "011rgd48gv4idkh2dwg4mlyx3s6pgm1263xq5ixsa4sg3jqh9d8b";
buildDepends = [
attoparsec hashable text unixCompat unorderedContainers
];
meta = {
homepage = "http://github.com/bos/configurator";
description = "Configuration management";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})