tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
glabels: init at 3.2.1 (git)
=
10 years ago
f59baafe
d24ec76c
+40
2 changed files
expand all
collapse all
unified
split
pkgs
applications
graphics
glabels
default.nix
top-level
all-packages.nix
+38
pkgs/applications/graphics/glabels/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, autoconf, automake, barcode, gnome3
2
2
+
, gtk3, gtk_doc, libxml2, librsvg , libtool, libe-book
3
3
+
, intltool, itstool, makeWrapper, pkgconfig, which
4
4
+
}:
5
5
+
6
6
+
stdenv.mkDerivation rec {
7
7
+
name = "glabels-${version}";
8
8
+
version = "3.2.1";
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "jimevins";
11
11
+
repo = "glabels";
12
12
+
rev = "glabels-3_2_1";
13
13
+
sha256 = "1y6gz0v9si3cvdzhakbgkyc94fajg19rmykfgnc37alrc21vs9zg";
14
14
+
};
15
15
+
16
16
+
buildInputs = [
17
17
+
autoconf automake barcode gtk3 gtk_doc gnome3.yelp_tools
18
18
+
gnome3.gnome_common gnome3.gsettings_desktop_schemas
19
19
+
intltool itstool libxml2 librsvg libe-book libtool
20
20
+
makeWrapper pkgconfig
21
21
+
];
22
22
+
23
23
+
preFixup = ''
24
24
+
rm "$out/share/icons/hicolor/icon-theme.cache"
25
25
+
wrapProgram "$out/bin/glabels-3" \
26
26
+
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
27
27
+
'';
28
28
+
29
29
+
preConfigure = "./autogen.sh";
30
30
+
31
31
+
meta = {
32
32
+
description = "Create labels and business cards";
33
33
+
homepage = http://glabels.org/;
34
34
+
license = stdenv.lib.licenses.gpl2;
35
35
+
platforms = stdenv.lib.platforms.unix;
36
36
+
maintainers = [ stdenv.lib.maintainers.nico202 ];
37
37
+
};
38
38
+
}
+2
pkgs/top-level/all-packages.nix
···
9400
9400
9401
9401
gatling = callPackage ../servers/http/gatling { };
9402
9402
9403
9403
+
glabels = callPackage ../applications/graphics/glabels { };
9404
9404
+
9403
9405
grafana = (callPackage ../servers/monitoring/grafana { }).bin // { outputs = ["bin"]; };
9404
9406
9405
9407
groovebasin = callPackage ../applications/audio/groovebasin { };