Skip to content
Snippets Groups Projects
Commit 4684c405 authored by Daniel Firth's avatar Daniel Firth
Browse files

shh: init at 0.7.2.0

parent 3bd1336b
No related merge requests found
...@@ -722,6 +722,7 @@ in H.HorizonExport.MakePackageSet ...@@ -722,6 +722,7 @@ in H.HorizonExport.MakePackageSet
, H.callHackage "shakespeare" "2.0.30" , H.callHackage "shakespeare" "2.0.30"
, H.callHackage "shake" "0.19.6" , H.callHackage "shake" "0.19.6"
, H.callHackage "shelly" "1.10.0" , H.callHackage "shelly" "1.10.0"
, H.callHackage "shh" "0.7.2.0"
, H.callHackage "should-not-typecheck" "2.1.0" , H.callHackage "should-not-typecheck" "2.1.0"
, H.callHackage "silently" "1.2.5.3" , H.callHackage "silently" "1.2.5.3"
, H.callHackage "simple-reflect" "0.3.3" , H.callHackage "simple-reflect" "0.3.3"
......
...@@ -1145,6 +1145,8 @@ self: with pkgs.haskell.lib; { ...@@ -1145,6 +1145,8 @@ self: with pkgs.haskell.lib; {
shelly = self.callPackage (./pkgs/shelly.nix) { }; shelly = self.callPackage (./pkgs/shelly.nix) { };
shh = self.callPackage (./pkgs/shh.nix) { };
should-not-typecheck = self.callPackage (./pkgs/should-not-typecheck.nix) { }; should-not-typecheck = self.callPackage (./pkgs/should-not-typecheck.nix) { };
silently = self.callPackage (./pkgs/silently.nix) { }; silently = self.callPackage (./pkgs/silently.nix) { };
......
{ mkDerivation
, async
, base
, bytestring
, containers
, deepseq
, directory
, doctest
, filepath
, lib
, markdown-unlit
, mtl
, process
, split
, stringsearch
, tasty
, tasty-hunit
, tasty-quickcheck
, template-haskell
, temporary
, unix
, utf8-string
}:
mkDerivation {
pname = "shh";
version = "0.7.2.0";
sha256 = "9e04100e43696cd6457c7d9e93eae313e5a9176c36b6108f7d70f3d6efdc9265";
revision = "1";
editedCabalFile = "054bjhpkni3nr6zsilj77gdgb2yw5s1gzm257zz4kigpjjjndr0a";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
async
base
bytestring
containers
deepseq
directory
filepath
mtl
process
split
stringsearch
template-haskell
unix
utf8-string
];
executableHaskellDepends = [
async
base
bytestring
deepseq
directory
temporary
unix
];
testHaskellDepends = [
async
base
bytestring
directory
doctest
filepath
tasty
tasty-hunit
tasty-quickcheck
utf8-string
];
testToolDepends = [ markdown-unlit ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Simple shell scripting from Haskell";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment