lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 36 lines 1.1 kB view raw
1{ stdenv, fetchurl, barcode, gnome3, autoreconfHook 2, gtk3, gtk-doc, libxml2, librsvg , libtool, libe-book 3, intltool, itstool, makeWrapper, pkgconfig, which 4}: 5 6stdenv.mkDerivation rec { 7 name = "glabels-${version}"; 8 version = "3.4.0"; 9 10 src = fetchurl { 11 url = "http://ftp.gnome.org/pub/GNOME/sources/glabels/3.4/glabels-3.4.0.tar.xz"; 12 sha256 = "04345crf5yrhq6rlrymz630rxnm8yw41vx04hb6xn2nkjn9hf3nl"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper intltool ]; 16 buildInputs = [ 17 barcode gtk3 gtk-doc gnome3.yelp-tools 18 gnome3.gnome-common gnome3.gsettings-desktop-schemas 19 itstool libxml2 librsvg libe-book libtool 20 21 ]; 22 23 preFixup = '' 24 rm "$out/share/icons/hicolor/icon-theme.cache" 25 wrapProgram "$out/bin/glabels-3" \ 26 --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" 27 ''; 28 29 meta = { 30 description = "Create labels and business cards"; 31 homepage = http://glabels.org/; 32 license = stdenv.lib.licenses.gpl2; 33 platforms = stdenv.lib.platforms.unix; 34 maintainers = [ stdenv.lib.maintainers.nico202 ]; 35 }; 36}