mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
scrot: clean up
Remove unused dependencies – `gettext libtool intltool gtk-doc` belong to `nativeBuildInputs`. But they are not used even if passed (autoreconf complains still and output does not change).
This commit is contained in:
parent
8348c7623a
commit
df68f3a71e
|
@ -1,6 +1,15 @@
|
|||
{ lib, stdenv, fetchFromGitHub, imlib2, xlibsWrapper, autoreconfHook
|
||||
, autoconf-archive, libXfixes, libXcomposite
|
||||
, pkg-config, gettext, libtool, intltool, gtk-doc, libbsd }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, imlib2
|
||||
, xlibsWrapper
|
||||
, autoreconfHook
|
||||
, autoconf-archive
|
||||
, libXfixes
|
||||
, libXcomposite
|
||||
, pkg-config
|
||||
, libbsd
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "scrot";
|
||||
|
@ -13,8 +22,19 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-oVmEPkEK1xDcIRUQjCp6CKf+aKnnVe3L7aRTdSsCmmY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config ];
|
||||
buildInputs = [ imlib2 xlibsWrapper libXfixes libXcomposite gettext libtool intltool gtk-doc libbsd ];
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
autoconf-archive
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
imlib2
|
||||
xlibsWrapper
|
||||
libXfixes
|
||||
libXcomposite
|
||||
libbsd
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/resurrecting-open-source-projects/scrot";
|
||||
|
|
Loading…
Reference in a new issue