scrot: 1.5 -> 1.7

This commit is contained in:
Bart Brouns 2022-01-29 15:36:13 +01:00
parent e303529d40
commit ac97a56aa7

View File

@ -1,19 +1,20 @@
{ lib, stdenv, fetchFromGitHub, giblib, xlibsWrapper, autoreconfHook { lib, stdenv, fetchFromGitHub, giblib, xlibsWrapper, autoreconfHook
, autoconf-archive, libXfixes, libXcursor, libXcomposite }: , autoconf-archive, libXfixes, libXcomposite
, pkg-config, gettext, libtool, intltool, gtk-doc, libbsd }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "scrot"; pname = "scrot";
version = "1.5"; version = "1.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "resurrecting-open-source-projects"; owner = "resurrecting-open-source-projects";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-4vguodLnCj0sOBLM4oJXTfX1p8hIo3WTwIuViPtZxHQ="; sha256 = "sha256-oVmEPkEK1xDcIRUQjCp6CKf+aKnnVe3L7aRTdSsCmmY=";
}; };
nativeBuildInputs = [ autoreconfHook autoconf-archive ]; nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ];
buildInputs = [ giblib xlibsWrapper libXfixes libXcursor libXcomposite ]; buildInputs = [ giblib xlibsWrapper libXfixes libXcomposite gettext libtool intltool gtk-doc libbsd ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/resurrecting-open-source-projects/scrot"; homepage = "https://github.com/resurrecting-open-source-projects/scrot";