Merge #157288: scrot: 1.5 -> 1.7

This commit is contained in:
Vladimír Čunát 2022-02-06 17:52:22 +01:00
commit a2cabcb38b
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

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