2016-09-18 12:35:23 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3
|
2018-12-02 03:41:15 -08:00
|
|
|
, gtk3, glib, gobject-introspection, libarchive
|
2016-09-18 12:35:23 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 12:07:20 -08:00
|
|
|
name = "gnome-autoar-${version}";
|
2018-03-04 12:18:49 -08:00
|
|
|
version = "0.2.3";
|
2018-02-25 12:07:20 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-04 17:12:11 -07:00
|
|
|
url = "mirror://gnome/sources/gnome-autoar/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-03-04 12:18:49 -08:00
|
|
|
sha256 = "02i4zgqqqj56h7bcys6dz7n78m4nj2x4dv1ggjmnrk98n06xpsax";
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "gnome-autoar"; attrPath = "gnome3.gnome-autoar"; };
|
|
|
|
};
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk3 glib ];
|
2018-12-02 03:41:15 -08:00
|
|
|
propagatedBuildInputs = [ libarchive gobject-introspection ];
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
description = "Library to integrate compressed files management with GNOME";
|
|
|
|
};
|
|
|
|
}
|