2019-09-15 13:35:43 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gnome3
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, gobject-introspection
|
|
|
|
, libarchive
|
|
|
|
, vala
|
2016-09-18 12:35:23 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gnome-autoar";
|
2019-12-23 06:38:52 -08:00
|
|
|
version = "0.2.4";
|
2018-02-25 12:07:20 -08:00
|
|
|
|
2019-09-15 13:35:43 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-02-25 12:07:20 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://gnome/sources/gnome-autoar/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-12-23 06:38:52 -08:00
|
|
|
sha256 = "0yk56ch46n3wfy633mq31kif9n7v06rlij4vqbsbn6l4z1vw6d0a";
|
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
|
|
|
|
2019-09-15 13:35:43 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gobject-introspection
|
|
|
|
pkgconfig
|
|
|
|
vala
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
libarchive
|
|
|
|
glib
|
|
|
|
];
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
2020-04-01 05:40:51 -07:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 12:35:23 -07:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
description = "Library to integrate compressed files management with GNOME";
|
|
|
|
};
|
|
|
|
}
|