depot/third_party/nixpkgs/pkgs/applications/misc/zscroll/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
657 B
Nix

{ stdenv, python3, python3Packages, fetchFromGitHub }:
let version = "1.0"; in
python3Packages.buildPythonApplication {
name = "zscroll-${version}";
# don't prefix with python version
namePrefix = "";
src = fetchFromGitHub {
owner = "noctuid";
repo = "zscroll";
rev = "v${version}";
sha256 = "0rf9m1czy19hzpcp8dq9c5zawk0nhwfzzjxlhk9r2n06lhb81ig5";
};
doCheck = false;
propagatedBuildInputs = [ python3 ];
meta = with stdenv.lib; {
description = "A text scroller for use with panels and shells";
homepage = "https://github.com/noctuid/zscroll";
license = licenses.bsd2;
platforms = platforms.all;
};
}