mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #30218 from rasendubi/escrotum
escrotum: Init at 2017-01-28
This commit is contained in:
commit
df51d642d8
25
pkgs/tools/graphics/escrotum/default.nix
Normal file
25
pkgs/tools/graphics/escrotum/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user