2012-02-14 09:00:37 -08:00
|
|
|
{ cabal, Cabal, filepath, HTTP, network, random, zlib }:
|
2009-04-19 06:21:40 -07:00
|
|
|
|
2011-08-09 17:35:08 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 06:21:40 -07:00
|
|
|
pname = "cabal-install";
|
2011-08-09 17:35:08 -07:00
|
|
|
version = "0.6.2";
|
2009-04-19 06:21:40 -07:00
|
|
|
sha256 = "d8ea91bd0a2a624ab1cf52ddfe48cef02b532bb5e2fcda3fd72ca51efc04b41a";
|
2011-08-09 17:35:08 -07:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-14 09:00:37 -08:00
|
|
|
buildDepends = [ Cabal filepath HTTP network random zlib ];
|
2009-04-19 06:21:40 -07:00
|
|
|
meta = {
|
2011-08-09 17:35:08 -07:00
|
|
|
homepage = "http://www.haskell.org/cabal/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "The command-line interface for Cabal and Hackage";
|
2011-08-09 17:35:08 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 06:57:25 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-19 06:21:40 -07:00
|
|
|
};
|
|
|
|
})
|