Merge pull request #3576 from ts468/haskell-pointful

Add Haskell package: pointful
This commit is contained in:
Aycan iRiCAN 2014-08-14 08:49:16 +03:00
commit 0fcc634d59
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ cabal, haskellSrc, mtl, syb }:
cabal.mkDerivation (self: {
pname = "pointful";
version = "1.0.2";
sha256 = "00xlxgdajkbi5d6gv88wdpwm16xdryshszz5qklryi0p65mmp99p";
isLibrary = false;
isExecutable = true;
buildDepends = [ haskellSrc mtl syb ];
meta = {
homepage = "http://github.com/23Skidoo/pointful";
description = "Pointful refactoring tool";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2879,6 +2879,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hslogger = callPackage ../development/tools/haskell/hslogger {};
pointful = callPackage ../development/tools/haskell/pointful {};
ShellCheck = callPackage ../development/tools/misc/ShellCheck { };
SourceGraph = callPackage ../development/tools/haskell/SourceGraph {};