22 lines
805 B
Nix
22 lines
805 B
Nix
|
{ stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive
|
||
|
, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf, libnotify, nautilus }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
inherit (import ./src.nix fetchurl) name src;
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
||
|
|
||
|
buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive
|
||
|
gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg
|
||
|
gnome3.dconf libnotify nautilus ];
|
||
|
|
||
|
installFlags = [ "nautilus_extensiondir=$(out)/lib/nautilus/extensions-3.0" ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://wiki.gnome.org/Apps/FileRoller;
|
||
|
description = "Archive manager for the GNOME desktop environment";
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = gnome3.maintainers;
|
||
|
};
|
||
|
}
|