tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
escrotum: Init at 2017-01-28
Alexey Shmalko
8 years ago
dfd9a2bb
d9d5a402
+29
2 changed files
expand all
collapse all
unified
split
pkgs
tools
graphics
escrotum
default.nix
top-level
all-packages.nix
+25
pkgs/tools/graphics/escrotum/default.nix
···
1
1
+
{ lib, fetchFromGitHub, buildPythonApplication
2
2
+
, pygtk
3
3
+
, numpy ? null
4
4
+
}:
5
5
+
6
6
+
buildPythonApplication {
7
7
+
name = "escrotum-2017-01-28";
8
8
+
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "Roger";
11
11
+
repo = "escrotum";
12
12
+
rev = "a51e330f976c1c9e1ac6932c04c41381722d2171";
13
13
+
sha256 = "0vbpyihqgm0fyh22ashy4lhsrk67n31nw3bs14d1wr7ky0l3rdnj";
14
14
+
};
15
15
+
16
16
+
propagatedBuildInputs = [ pygtk numpy ];
17
17
+
18
18
+
meta = with lib; {
19
19
+
homepage = https://github.com/Roger/escrotum;
20
20
+
description = "Linux screen capture using pygtk, inspired by scrot";
21
21
+
platforms = platforms.linux;
22
22
+
maintainers = with maintainers; [ rasendubi ];
23
23
+
license = licenses.gpl3;
24
24
+
};
25
25
+
}
+4
pkgs/top-level/all-packages.nix
···
1902
1902
1903
1903
epsxe = callPackage ../misc/emulators/epsxe { };
1904
1904
1905
1905
+
escrotum = callPackage ../tools/graphics/escrotum {
1906
1906
+
inherit (pythonPackages) buildPythonApplication pygtk numpy;
1907
1907
+
};
1908
1908
+
1905
1909
ethtool = callPackage ../tools/misc/ethtool { };
1906
1910
1907
1911
ettercap = callPackage ../applications/networking/sniffers/ettercap { };