nixpkgs/pkgs/applications/misc/zscroll/default.nix

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

29 lines
664 B
Nix
Raw Normal View History

{ lib, python3, python3Packages, fetchFromGitHub }:
2015-11-13 00:31:54 +00:00
2022-03-07 11:37:20 +00:00
python3Packages.buildPythonApplication rec {
pname = "zscroll";
2023-05-01 18:34:46 +00:00
version = "2.0.1";
2015-11-13 00:31:54 +00:00
# don't prefix with python version
namePrefix = "";
src = fetchFromGitHub {
owner = "noctuid";
repo = "zscroll";
2023-05-01 18:34:46 +00:00
rev = version;
sha256 = "sha256-gEluWzCbztO4N1wdFab+2xH7l9w5HqZVzp2LrdjHSRM=";
2015-11-13 00:31:54 +00:00
};
doCheck = false;
propagatedBuildInputs = [ python3 ];
2015-11-13 00:31:54 +00:00
meta = with lib; {
2015-11-13 00:31:54 +00:00
description = "A text scroller for use with panels and shells";
mainProgram = "zscroll";
homepage = "https://github.com/noctuid/zscroll";
2023-05-01 18:34:46 +00:00
license = licenses.gpl3Plus;
2015-11-13 00:31:54 +00:00
platforms = platforms.all;
};
}