2019-02-13 22:47:50 +01:00
|
|
|
{ stdenv, fetchurl, glib, gtk3, meson, ninja, pkgconfig, gnome3, gettext, itstool, libxml2, libarchive
|
2018-09-04 00:13:41 +02:00
|
|
|
, file, json-glib, python3, wrapGAppsHook, desktop-file-utils, libnotify, nautilus, glibcLocales }:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 21:07:20 +01:00
|
|
|
name = "file-roller-${version}";
|
2018-09-05 02:43:48 +02:00
|
|
|
version = "3.30.1";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 02:12:11 +02:00
|
|
|
url = "mirror://gnome/sources/file-roller/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-09-05 02:43:48 +02:00
|
|
|
sha256 = "0kiragsqyixyx15747b71qc4nw8y4jx9d55wgg612xb0hp5l9pj1";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2018-03-14 01:39:32 +01:00
|
|
|
LANG = "en_US.UTF-8"; # postinstall.py
|
|
|
|
|
2018-09-04 00:13:41 +02:00
|
|
|
nativeBuildInputs = [ meson ninja gettext itstool pkgconfig libxml2 python3 wrapGAppsHook glibcLocales desktop-file-utils ];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2019-02-13 22:47:50 +01:00
|
|
|
buildInputs = [ glib gtk3 json-glib libarchive file gnome3.adwaita-icon-theme libnotify nautilus ];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2018-04-26 22:59:34 +02:00
|
|
|
PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/lib/nautilus/extensions-3.0";
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2018-03-14 01:39:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x postinstall.py # patchShebangs requires executable file
|
|
|
|
patchShebangs postinstall.py
|
2018-09-05 02:43:48 +02:00
|
|
|
patchShebangs data/set-mime-type-entry.py
|
2018-03-14 01:39:32 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "file-roller";
|
|
|
|
attrPath = "gnome3.file-roller";
|
|
|
|
};
|
|
|
|
};
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/FileRoller;
|
|
|
|
description = "Archive manager for the GNOME desktop environment";
|
2018-03-14 01:39:32 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-09-18 21:35:23 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
}
|