nixpkgs/pkgs/development/libraries/haskell/gsasl/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
455 B
Nix

{ cabal, gsasl, transformers }:
cabal.mkDerivation (self: {
pname = "gsasl";
version = "0.3.5";
sha256 = "1797rs6syrgs82akbj7nkmj0nni4w83fhwrl1zy2l3jqkcacvbm3";
buildDepends = [ transformers ];
pkgconfigDepends = [ gsasl ];
meta = {
homepage = "https://john-millikin.com/software/haskell-gsasl/";
description = "Bindings for GNU libgsasl";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
};
})