
comonad-1.1.1.6 comonad-3.0.0.1 configurator-0.2.0.0 contravariant-0.2.0.2 data-lens-2.10.1 data-lens-template-2.1.5 distributive-0.2.2 heist-0.8.1.1 semigroupoids-1.3.4 snap-0.9.1.1 xmlhtml-0.2.0.0
19 lines
506 B
Nix
19 lines
506 B
Nix
{ cabal, attoparsec, hashable, text, unixCompat
|
|
, unorderedContainers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "configurator";
|
|
version = "0.2.0.0";
|
|
sha256 = "0zkcmziyfq2sm9i75ysi5nxd21fynp88m0safhmn3jld7plj03la";
|
|
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;
|
|
};
|
|
})
|