Skip to content
Snippets Groups Projects
Commit 8647a4fc authored by Max Tomago's avatar Max Tomago
Browse files

quiet: init at 0.2

parent ef2d9e75
No related merge requests found
......@@ -204,6 +204,7 @@ in [ callHackage "PyF" "0.11.0.0"
(Some "81cd1ada745c12af2c2c28afce1f6b6b28b38fdd")
(Some "prettyprinter-configurable")
, callHackage "protolude" "0.3.2"
, callHackage "quiet" "0.2"
, callHackage "ral" "0.1"
, callHackage "recursion-schemes" "5.2.2.2"
, callHackage "ref-tf" "0.5.0.1"
......
......@@ -117,6 +117,8 @@ final: prev: with pkgs.haskell.lib; {
protolude = prev.callPackage (./pkgs/protolude.nix) { };
quiet = prev.callPackage (./pkgs/quiet.nix) { };
ral = prev.callPackage (./pkgs/ral.nix) { };
recursion-schemes = prev.callPackage (./pkgs/recursion-schemes.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "quiet";
version = "0.2";
sha256 = "118bf67379dce4737619998380e399acba306dc8a086a069d4a01d5694325e4c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/jacobstanley/quiet#readme";
description = "Generic deriving of Read/Show with no record labels";
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