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

echo: init at 0.1.4

parent 9a69f3f5
No related merge requests found
......@@ -215,6 +215,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/haskell/double-conversion"
(None Text)
(None Text)
, callHackage "echo" "0.1.4"
, callCabal2nix
"ed25519"
"https://gitlab.homotopic.tech/horizon/adopted/ed25519"
......
......@@ -249,6 +249,8 @@ self: with pkgs.haskell.lib; {
double-conversion = self.callPackage (./pkgs/double-conversion.nix) { };
echo = self.callPackage (./pkgs/echo.nix) { };
ed25519 = self.callPackage (./pkgs/ed25519.nix) { };
edit-distance = self.callPackage (./pkgs/edit-distance.nix) { };
......
{ mkDerivation, base, lib, process }:
mkDerivation {
pname = "echo";
version = "0.1.4";
sha256 = "c9fe1bf2904825a65b667251ec644f197b71dc5c209d2d254be5de3d496b0e43";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base process ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/RyanGlScott/echo";
description = "A cross-platform, cross-console way to handle echoing terminal input";
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