2012-07-20 04:37:21 +02:00
|
|
|
{ cabal, attoparsec, hashable, text, unixCompat
|
|
|
|
, unorderedContainers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "configurator";
|
2012-08-28 12:37:14 +02:00
|
|
|
version = "0.2.0.1";
|
|
|
|
sha256 = "02w6f5q2xkpc3kgqz6a58g7yr0q4xd8ck1b6lr64ahvqwsjbxy6p";
|
2012-07-20 04:37:21 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|