forked from mirrors/nixpkgs
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ stdenv, gettext, libxml2, fetchurl, pkgconfig, libcanberra-gtk3
|
|
, bash, gtk3, glib, meson, ninja, wrapGAppsHook, appstream-glib
|
|
, gnome3, librsvg, gdk_pixbuf }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnome-screenshot-${version}";
|
|
version = "3.26.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-screenshot/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "1bbc11595d3822f4b92319cdf9ba49dd00f5471b6046c590847dc424a874c8bb";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "gnome-screenshot"; attrPath = "gnome3.gnome-screenshot"; };
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/postinstall.py # patchShebangs requires executable file
|
|
patchShebangs build-aux/postinstall.py
|
|
'';
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome-themes-standard ];
|
|
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext appstream-glib libxml2 wrapGAppsHook ];
|
|
buildInputs = [ bash gtk3 glib libcanberra-gtk3
|
|
gnome3.gsettings-desktop-schemas ];
|
|
|
|
patches = [
|
|
./prevent-cache-updates.patch
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://en.wikipedia.org/wiki/GNOME_Screenshot;
|
|
description = "Utility used in the GNOME desktop environment for taking screenshots";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|