escrotum: Init at 2017-01-28

This commit is contained in:
Alexey Shmalko 2017-10-08 14:18:45 +03:00
parent d9d5a402af
commit dfd9a2bbd0
No known key found for this signature in database
GPG Key ID: DCEF7BCCEB3066C3
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, buildPythonApplication
, pygtk
, numpy ? null
}:
buildPythonApplication {
name = "escrotum-2017-01-28";
src = fetchFromGitHub {
owner = "Roger";
repo = "escrotum";
rev = "a51e330f976c1c9e1ac6932c04c41381722d2171";
sha256 = "0vbpyihqgm0fyh22ashy4lhsrk67n31nw3bs14d1wr7ky0l3rdnj";
};
propagatedBuildInputs = [ pygtk numpy ];
meta = with lib; {
homepage = https://github.com/Roger/escrotum;
description = "Linux screen capture using pygtk, inspired by scrot";
platforms = platforms.linux;
maintainers = with maintainers; [ rasendubi ];
license = licenses.gpl3;
};
}

View File

@ -1902,6 +1902,10 @@ with pkgs;
epsxe = callPackage ../misc/emulators/epsxe { };
escrotum = callPackage ../tools/graphics/escrotum {
inherit (pythonPackages) buildPythonApplication pygtk numpy;
};
ethtool = callPackage ../tools/misc/ethtool { };
ettercap = callPackage ../applications/networking/sniffers/ettercap { };