nixpkgs/pkgs/development/libraries/haskell/binary-shared/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
432 B
Nix

{ cabal, binary, mtl }:
cabal.mkDerivation (self: {
pname = "binary-shared";
version = "0.8.3";
sha256 = "1clqq0rqjw1v7y6glkjnfyga5gxh768flyw617g47z0qa181c0c3";
buildDepends = [ binary mtl ];
meta = {
homepage = "http://www.leksah.org";
description = "Sharing for the binary package";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})