3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
425 B
Nix
16 lines
425 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "dotgen";
|
|
version = "0.4.1";
|
|
sha256 = "1g5ds0mqkz0lzhcp42hin08azschs3p083ikdk4d5jil8rzl7d8k";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
meta = {
|
|
description = "A simple interface for building .dot graph files.";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|