Add Haskell package: pointful

This commit is contained in:
Thomas Strobel 2014-08-13 23:38:34 +02:00
parent cdabab5b28
commit cd9f3db40b
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

@ -1848,6 +1848,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
pointedlist = callPackage ../development/libraries/haskell/pointedlist {};
pointful = callPackage ../development/libraries/haskell/pointful {};
poolConduit = callPackage ../development/libraries/haskell/pool-conduit {};
pop3client = callPackage ../development/libraries/haskell/pop3-client {};