2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, filepath }:
|
2011-09-09 20:44:19 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "cabal-ghci";
|
2013-08-11 18:37:14 +02:00
|
|
|
version = "0.3";
|
|
|
|
sha256 = "1x7fpvvmr2mq7l960wgsijhyrdaiq3lnnl3z6drklc5p73pms8w6";
|
2011-09-09 20:44:19 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal filepath ];
|
2011-09-09 20:44:19 +02:00
|
|
|
meta = {
|
2013-08-11 18:37:14 +02:00
|
|
|
homepage = "http://github.com/atnnn/cabal-ghci";
|
2011-09-09 20:44:19 +02:00
|
|
|
description = "Set up ghci with options taken from a .cabal file";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-09 20:44:19 +02:00
|
|
|
};
|
|
|
|
})
|