Add Haskell package: pointfree
This commit is contained in:
committed by
Peter Simons
parent
9e2b57a8fe
commit
637ed1642e
17
pkgs/development/tools/haskell/pointfree/default.nix
Normal file
17
pkgs/development/tools/haskell/pointfree/default.nix
Normal 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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user