2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, haskellSrcExts, regexPosix }:
|
2011-08-12 14:39:59 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "language-haskell-extract";
|
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "0lmg16g3z8cx0vb037bk4j2nr3qvybfcqfsr8l6jk57b2nz3yhbf";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ haskellSrcExts regexPosix ];
|
2011-08-12 14:39:59 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/finnsson/template-helper";
|
|
|
|
description = "Module to automatically extract functions from the local code";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-12 14:43:03 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-12 14:39:59 +02:00
|
|
|
};
|
|
|
|
})
|