glabels: init at 3.2.1 (git)

= f59baafe d24ec76c

+40
+38
pkgs/applications/graphics/glabels/default.nix
··· 1 + { stdenv, fetchFromGitHub, autoconf, automake, barcode, gnome3 2 + , gtk3, gtk_doc, libxml2, librsvg , libtool, libe-book 3 + , intltool, itstool, makeWrapper, pkgconfig, which 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + name = "glabels-${version}"; 8 + version = "3.2.1"; 9 + src = fetchFromGitHub { 10 + owner = "jimevins"; 11 + repo = "glabels"; 12 + rev = "glabels-3_2_1"; 13 + sha256 = "1y6gz0v9si3cvdzhakbgkyc94fajg19rmykfgnc37alrc21vs9zg"; 14 + }; 15 + 16 + buildInputs = [ 17 + autoconf automake barcode gtk3 gtk_doc gnome3.yelp_tools 18 + gnome3.gnome_common gnome3.gsettings_desktop_schemas 19 + intltool itstool libxml2 librsvg libe-book libtool 20 + makeWrapper pkgconfig 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 + preConfigure = "./autogen.sh"; 30 + 31 + meta = { 32 + description = "Create labels and business cards"; 33 + homepage = http://glabels.org/; 34 + license = stdenv.lib.licenses.gpl2; 35 + platforms = stdenv.lib.platforms.unix; 36 + maintainers = [ stdenv.lib.maintainers.nico202 ]; 37 + }; 38 + }
+2
pkgs/top-level/all-packages.nix
··· 9400 9400 9401 9401 gatling = callPackage ../servers/http/gatling { }; 9402 9402 9403 + glabels = callPackage ../applications/graphics/glabels { }; 9404 + 9403 9405 grafana = (callPackage ../servers/monitoring/grafana { }).bin // { outputs = ["bin"]; }; 9404 9406 9405 9407 groovebasin = callPackage ../applications/audio/groovebasin { };