2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, giblib, xlibsWrapper, autoreconfHook
|
2020-09-16 13:05:20 +00:00
|
|
|
, autoconf-archive, libXfixes, libXcursor, libXcomposite }:
|
2009-09-02 22:56:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-23 14:28:51 +00:00
|
|
|
pname = "scrot";
|
2021-02-06 18:55:59 +00:00
|
|
|
version = "1.5";
|
2009-09-02 22:56:33 +00:00
|
|
|
|
2019-08-23 14:28:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "resurrecting-open-source-projects";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-02-06 18:55:59 +00:00
|
|
|
sha256 = "sha256-4vguodLnCj0sOBLM4oJXTfX1p8hIo3WTwIuViPtZxHQ=";
|
2009-09-02 22:56:33 +00:00
|
|
|
};
|
|
|
|
|
2019-08-23 14:28:51 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook autoconf-archive ];
|
2020-09-16 13:05:20 +00:00
|
|
|
buildInputs = [ giblib xlibsWrapper libXfixes libXcursor libXcomposite ];
|
2009-09-02 22:56:33 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/resurrecting-open-source-projects/scrot";
|
2009-09-02 22:56:33 +00:00
|
|
|
description = "A command-line screen capture utility";
|
2016-02-15 14:46:51 +00:00
|
|
|
platforms = platforms.linux;
|
2019-08-20 17:36:05 +00:00
|
|
|
maintainers = with maintainers; [ globin ];
|
2018-08-04 16:46:28 +00:00
|
|
|
license = licenses.mit;
|
2009-09-02 22:56:33 +00:00
|
|
|
};
|
|
|
|
}
|