1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 02:51:18 +00:00
nixpkgs/pkgs/tools/graphics/escrotum/default.nix

33 lines
777 B
Nix
Raw Normal View History

2017-10-08 12:18:45 +01:00
{ lib, fetchFromGitHub, buildPythonApplication
, pygtk
, numpy ? null
}:
buildPythonApplication {
2019-08-29 10:20:01 +01:00
name = "escrotum-2019-06-10";
2017-10-08 12:18:45 +01:00
src = fetchFromGitHub {
owner = "Roger";
repo = "escrotum";
2019-08-29 10:20:01 +01:00
rev = "f6c300315cb4402e37f16b56aad2d206e24c5281";
sha256 = "0x7za74lkwn3v6j9j04ifgdwdlx9akh1izkw7vkkzj9ag9qjrzb0";
2017-10-08 12:18:45 +01:00
};
propagatedBuildInputs = [ pygtk numpy ];
2019-08-29 10:20:01 +01:00
outputs = [ "out" "man" ];
postInstall = ''
mkdir -p $man/share/man/man1
cp man/escrotum.1 $man/share/man/man1/
'';
2017-10-08 12:18:45 +01:00
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;
};
}