mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
glabels: init at 3.2.1 (git)
This commit is contained in:
parent
d24ec76cc2
commit
f59baafee2
38
pkgs/applications/graphics/glabels/default.nix
Normal file
38
pkgs/applications/graphics/glabels/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoconf, automake, barcode, gnome3
|
||||||
|
, gtk3, gtk_doc, libxml2, librsvg , libtool, libe-book
|
||||||
|
, intltool, itstool, makeWrapper, pkgconfig, which
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "glabels-${version}";
|
||||||
|
version = "3.2.1";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jimevins";
|
||||||
|
repo = "glabels";
|
||||||
|
rev = "glabels-3_2_1";
|
||||||
|
sha256 = "1y6gz0v9si3cvdzhakbgkyc94fajg19rmykfgnc37alrc21vs9zg";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
autoconf automake barcode gtk3 gtk_doc gnome3.yelp_tools
|
||||||
|
gnome3.gnome_common gnome3.gsettings_desktop_schemas
|
||||||
|
intltool itstool libxml2 librsvg libe-book libtool
|
||||||
|
makeWrapper pkgconfig
|
||||||
|
];
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
rm "$out/share/icons/hicolor/icon-theme.cache"
|
||||||
|
wrapProgram "$out/bin/glabels-3" \
|
||||||
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = "./autogen.sh";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Create labels and business cards";
|
||||||
|
homepage = http://glabels.org/;
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.nico202 ];
|
||||||
|
};
|
||||||
|
}
|
@ -9400,6 +9400,8 @@ let
|
|||||||
|
|
||||||
gatling = callPackage ../servers/http/gatling { };
|
gatling = callPackage ../servers/http/gatling { };
|
||||||
|
|
||||||
|
glabels = callPackage ../applications/graphics/glabels { };
|
||||||
|
|
||||||
grafana = (callPackage ../servers/monitoring/grafana { }).bin // { outputs = ["bin"]; };
|
grafana = (callPackage ../servers/monitoring/grafana { }).bin // { outputs = ["bin"]; };
|
||||||
|
|
||||||
groovebasin = callPackage ../applications/audio/groovebasin { };
|
groovebasin = callPackage ../applications/audio/groovebasin { };
|
||||||
|
Loading…
Reference in New Issue
Block a user