gnome3.gnome-autoar: cleanup
* enable vapi * multi outputs * correct Inputs
This commit is contained in:
parent
8ca630391f
commit
345ef1cfe0
@ -1,11 +1,20 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gnome3
|
{ stdenv
|
||||||
, gtk3, glib, gobject-introspection, libarchive
|
, fetchurl
|
||||||
|
, pkgconfig
|
||||||
|
, gnome3
|
||||||
|
, gtk3
|
||||||
|
, glib
|
||||||
|
, gobject-introspection
|
||||||
|
, libarchive
|
||||||
|
, vala
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-autoar";
|
pname = "gnome-autoar";
|
||||||
version = "0.2.3";
|
version = "0.2.3";
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-autoar/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/gnome-autoar/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "02i4zgqqqj56h7bcys6dz7n78m4nj2x4dv1ggjmnrk98n06xpsax";
|
sha256 = "02i4zgqqqj56h7bcys6dz7n78m4nj2x4dv1ggjmnrk98n06xpsax";
|
||||||
@ -15,9 +24,20 @@ stdenv.mkDerivation rec {
|
|||||||
updateScript = gnome3.updateScript { packageName = "gnome-autoar"; attrPath = "gnome3.gnome-autoar"; };
|
updateScript = gnome3.updateScript { packageName = "gnome-autoar"; attrPath = "gnome3.gnome-autoar"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ gtk3 glib ];
|
gobject-introspection
|
||||||
propagatedBuildInputs = [ libarchive gobject-introspection ];
|
pkgconfig
|
||||||
|
vala
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
libarchive
|
||||||
|
glib
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user