nixpkgs/pkgs/development/libraries/haskell/process-extras/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
467 B
Nix

{ cabal, deepseq, text }:
cabal.mkDerivation (self: {
pname = "process-extras";
version = "0.2.0";
sha256 = "0mr4f2v19qz6d6jhffz9gky0ykdqwl8c11adbdm04wm2a3xsvf7g";
buildDepends = [ deepseq text ];
meta = {
homepage = "https://github.com/davidlazar/process-extras";
description = "Process extras";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})