You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
556 B
25 lines
556 B
with import <nixpkgs> {}; |
|
|
|
python3Packages.buildPythonApplication { |
|
pname = "gulik"; |
|
version = "dev"; |
|
|
|
src = lib.cleanSource ./.; |
|
propagatedBuildInputs = with python3Packages; [ |
|
setproctitle |
|
pygobject3 |
|
requests |
|
pycairo |
|
psutil |
|
]; |
|
buildInputs = [ |
|
gobjectIntrospection |
|
gtk3 |
|
]; |
|
meta = with stdenv.lib; { |
|
description = "A graphical system monitor using cairo and psutil."; |
|
homepage = https://rnd.phryk.net/phryk-evil-mad-sciences-llc/gulik; |
|
license = licenses.gpl3; |
|
platforms = platforms.unix; |
|
}; |
|
}
|
|
|