forked from mirrors/nixpkgs
Add gnome3.file-roller
This commit is contained in:
parent
d33e5eadd0
commit
e8416dbe40
|
@ -56,6 +56,8 @@ rec {
|
||||||
|
|
||||||
#### Apps (http://ftp.acc.umu.se/pub/GNOME/apps/)
|
#### Apps (http://ftp.acc.umu.se/pub/GNOME/apps/)
|
||||||
|
|
||||||
|
file-roller = callPackage ./desktop/file-roller { };
|
||||||
|
|
||||||
gnome_dictionary = callPackage ./desktop/gnome-dictionary { };
|
gnome_dictionary = callPackage ./desktop/gnome-dictionary { };
|
||||||
|
|
||||||
gnome_desktop = callPackage ./desktop/gnome-desktop { };
|
gnome_desktop = callPackage ./desktop/gnome-desktop { };
|
||||||
|
|
29
pkgs/desktops/gnome-3/desktop/file-roller/default.nix
Normal file
29
pkgs/desktops/gnome-3/desktop/file-roller/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive
|
||||||
|
, attr, bzip2, acl, makeWrapper }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "file-roller-${version}";
|
||||||
|
|
||||||
|
majVersion = "3.10";
|
||||||
|
version = "${majVersion}.2.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnome/sources/file-roller/${majVersion}/${name}.tar.xz";
|
||||||
|
sha256 = "14374z1yfbjlgpl4k1ih8b35x8kzvh99y22rwwkc2wfz0d0i1qgx";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO: support nautilus
|
||||||
|
# it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so
|
||||||
|
|
||||||
|
buildInputs = [ glib pkgconfig gnome3.gtk intltool itstool libxml2 libarchive
|
||||||
|
attr bzip2 acl makeWrapper ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram "$out/bin/file-roller" \
|
||||||
|
--prefix XDG_DATA_DIRS : "${gnome3.gtk}/share:$out/share"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue