haskell-HSH: shell scripting in haskell

svn path=/nixpkgs/trunk/; revision=32666
This commit is contained in:
Peter Simons 2012-02-28 00:09:59 +00:00
parent be0acc8bc1
commit bf4ebdc2bb
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ cabal, filepath, hslogger, MissingH, mtl, regexBase, regexCompat
, regexPosix
}:
cabal.mkDerivation (self: {
pname = "HSH";
version = "2.0.3";
sha256 = "10ndmzwaf9by8wnawl3p1r7wn6hqigfymv7hd99ayf25dsqwnzx2";
isLibrary = true;
isExecutable = true;
buildDepends = [
filepath hslogger MissingH mtl regexBase regexCompat regexPosix
];
meta = {
homepage = "http://software.complete.org/hsh";
description = "Library to mix shell scripting with Haskell programs";
license = "LGPL";
platforms = self.ghc.meta.platforms;
};
})

View File

@ -870,6 +870,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
hsemail = callPackage ../development/libraries/haskell/hsemail {};
HSH = callPackage ../development/libraries/haskell/HSH {};
HsSyck = callPackage ../development/libraries/haskell/HsSyck {};
HsOpenSSL = callPackage ../development/libraries/haskell/HsOpenSSL {};