Merge pull request #30218 from rasendubi/escrotum

escrotum: Init at 2017-01-28
This commit is contained in:
Jörg Thalheim 2017-10-08 15:19:48 +01:00 committed by GitHub
commit df51d642d8
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 { };