papeer: init at 0.7.0

https://papeer.tech/
This commit is contained in:
Emery Hemingway
2023-04-23 00:07:33 +00:00
parent 7dce69012d
commit 97f06d6cb7
2 changed files with 26 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "papeer";
version = "0.7.0";
src = fetchFromGitHub {
owner = "lapwat";
repo = pname;
rev = "v${version}";
hash = "sha256-MhErx/Sjz9DUBZb39pQNVf4V+cRdGxerSOj8alsEaPc=";
};
vendorHash = "sha256-3QRSdkx9p0H+zPB//bpWCBKKjKjrx0lHMk5lFm+U7pA=";
doCheck = false; # uses network
meta = {
description = "Convert websites into ebooks and markdown";
homepage = "https://papeer.tech/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ehmry ];
};
}
+2
View File
@@ -10907,6 +10907,8 @@ with pkgs;
paperwork = callPackage ../applications/office/paperwork/paperwork-gtk.nix { };
papeer = callPackage ../tools/text/papeer { };
papertrail = callPackage ../tools/text/papertrail { };
pappl = callPackage ../applications/printing/pappl { };