mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
4a0f25a62b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/engrampa/versions. These checks were done: - built on NixOS - /nix/store/fk4bvvss8ciiw13halc37x6a4dpji36y-engrampa-1.20.1/bin/engrampa passed the binary check. - /nix/store/fk4bvvss8ciiw13halc37x6a4dpji36y-engrampa-1.20.1/bin/.engrampa-wrapped passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.20.1 with grep in /nix/store/fk4bvvss8ciiw13halc37x6a4dpji36y-engrampa-1.20.1 - directory tree listing: https://gist.github.com/b73375db196ecf4ade754cfc0ce3b7c8 - du listing: https://gist.github.com/ff5ea27db0db941cee563d428c065f42
36 lines
888 B
Nix
36 lines
888 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gnome3, mate, hicolor-icon-theme, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "engrampa-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "09p9jaljaihc723zp17la6lw7h7q16ysk7q0fr0al0k11ss16w6f";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
itstool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libxml2
|
|
gnome3.gtk
|
|
mate.caja
|
|
hicolor-icon-theme
|
|
mate.mate-desktop
|
|
];
|
|
|
|
configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
|
|
|
|
meta = {
|
|
description = "Archive Manager for MATE";
|
|
homepage = http://mate-desktop.org;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|