3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/epr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
511 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "epr";
2022-12-28 21:17:06 +00:00
version = "2.4.13";
src = fetchFromGitHub {
owner = "wustho";
repo = pname;
rev = "v${version}";
2022-12-28 21:17:06 +00:00
sha256 = "sha256-1qsqYlqGlCRhl7HINrcTDt5bGlb7g5PmaERylT+UvEg=";
};
meta = with lib; {
description = "CLI Epub Reader";
homepage = "https://github.com/wustho/epr";
license = licenses.mit;
maintainers = [ maintainers.Br1ght0ne ];
platforms = platforms.all;
};
}