nixpkgs/pkgs/development/libraries/haskell/silently/default.nix
2012-10-23 18:29:59 +02:00

15 lines
424 B
Nix

{ cabal, deepseq }:
cabal.mkDerivation (self: {
pname = "silently";
version = "1.2.4";
sha256 = "0ac75b4n9566vpvv6jfcqafnyplv8dd7bgak89b16wy032z1xl5j";
buildDepends = [ deepseq ];
meta = {
homepage = "https://github.com/trystan/silently";
description = "Prevent or capture writing to stdout and other handles";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})