Add Haskell package: pointfree

This commit is contained in:
Thomas Strobel 2014-08-13 23:32:49 +02:00 committed by Peter Simons
parent 9e2b57a8fe
commit 637ed1642e
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ cabal, haskellSrcExts, HUnit, QuickCheck, transformers }:
cabal.mkDerivation (self: {
pname = "pointfree";
version = "1.0.4.7";
sha256 = "0jwql0ka01cr53ayjc4dpaci11i7r1y3b9gcbh3rlamb1mnfcqvl";
isLibrary = false;
isExecutable = true;
jailbreak = true;
buildDepends = [ haskellSrcExts transformers ];
testDepends = [ haskellSrcExts HUnit QuickCheck transformers ];
meta = {
description = "Tool for refactoring expressions into pointfree form";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})

View file

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