haskell-HSH: shell scripting in haskell
svn path=/nixpkgs/trunk/; revision=32666
This commit is contained in:
parent
be0acc8bc1
commit
bf4ebdc2bb
20
pkgs/development/libraries/haskell/HSH/default.nix
Normal file
20
pkgs/development/libraries/haskell/HSH/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user