nixpkgs/pkgs/development/libraries/haskell/base-compat/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

14 lines
358 B
Nix

{ cabal, hspec, setenv }:
cabal.mkDerivation (self: {
pname = "base-compat";
version = "0.2.1";
sha256 = "1yssx3nww89dmkw8i55bp1vinbczbxhhh0kh4f3b9fyw5ylnai43";
testDepends = [ hspec setenv ];
meta = {
description = "A compatibility layer for base";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})