nixpkgs/pkgs/development/tools/haskell/jailbreak-cabal/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

17 lines
483 B
Nix

{ cabal, Cabal }:
cabal.mkDerivation (self: {
pname = "jailbreak-cabal";
version = "1.1";
sha256 = "0x0dkzfjsgqpjmldgami46ki9k7pgy7ll4slms0kdc89qryzp7dg";
isLibrary = false;
isExecutable = true;
buildDepends = [ Cabal ];
meta = {
homepage = "http://github.com/peti/jailbreak-cabal";
description = "Strip version restrictions from build dependencies in Cabal files";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})