lol

escrotum: Init at 2017-01-28

+29
+25
pkgs/tools/graphics/escrotum/default.nix
··· 1 + { lib, fetchFromGitHub, buildPythonApplication 2 + , pygtk 3 + , numpy ? null 4 + }: 5 + 6 + buildPythonApplication { 7 + name = "escrotum-2017-01-28"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "Roger"; 11 + repo = "escrotum"; 12 + rev = "a51e330f976c1c9e1ac6932c04c41381722d2171"; 13 + sha256 = "0vbpyihqgm0fyh22ashy4lhsrk67n31nw3bs14d1wr7ky0l3rdnj"; 14 + }; 15 + 16 + propagatedBuildInputs = [ pygtk numpy ]; 17 + 18 + meta = with lib; { 19 + homepage = https://github.com/Roger/escrotum; 20 + description = "Linux screen capture using pygtk, inspired by scrot"; 21 + platforms = platforms.linux; 22 + maintainers = with maintainers; [ rasendubi ]; 23 + license = licenses.gpl3; 24 + }; 25 + }
+4
pkgs/top-level/all-packages.nix
··· 1902 1902 1903 1903 epsxe = callPackage ../misc/emulators/epsxe { }; 1904 1904 1905 + escrotum = callPackage ../tools/graphics/escrotum { 1906 + inherit (pythonPackages) buildPythonApplication pygtk numpy; 1907 + }; 1908 + 1905 1909 ethtool = callPackage ../tools/misc/ethtool { }; 1906 1910 1907 1911 ettercap = callPackage ../applications/networking/sniffers/ettercap { };