2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, filepath, HTTP, network, random, time, zlib }:
|
2010-07-17 15:23:48 +02:00
|
|
|
|
2011-08-10 02:35:08 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-17 15:23:48 +02:00
|
|
|
pname = "cabal-install";
|
2011-08-10 02:35:08 +02:00
|
|
|
version = "0.8.2";
|
2010-07-17 15:23:48 +02:00
|
|
|
sha256 = "8f896ab46ec6c578f620ce4150f7cd04a2088be793113b33cc570b13b6b86e0b";
|
2011-08-10 02:35:08 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal filepath HTTP network random time zlib ];
|
2010-07-17 15:23:48 +02:00
|
|
|
meta = {
|
2011-08-10 02:35:08 +02:00
|
|
|
homepage = "http://www.haskell.org/cabal/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "The command-line interface for Cabal and Hackage";
|
2011-08-10 02:35:08 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-17 15:23:48 +02:00
|
|
|
};
|
|
|
|
})
|