2021-05-07 22:18:14 +01:00
|
|
|
{ lib, stdenv, fetchurl, barcode, gnome, autoreconfHook
|
2019-04-17 01:38:26 +01:00
|
|
|
, gtk3, gtk-doc, libxml2, librsvg , libtool, libe-book, gsettings-desktop-schemas
|
2021-01-19 06:50:56 +00:00
|
|
|
, intltool, itstool, makeWrapper, pkg-config, yelp-tools
|
2016-02-15 20:34:59 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-25 07:46:07 +01:00
|
|
|
pname = "glabels";
|
2018-12-17 19:04:10 +00:00
|
|
|
version = "3.4.1";
|
2017-03-18 23:38:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 13:21:58 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2018-12-17 19:04:10 +00:00
|
|
|
sha256 = "0f2rki8i27pkd9r0gz03cdl1g4vnmvp0j49nhxqn275vi8lmgr0q";
|
2016-02-15 20:34:59 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper intltool ];
|
2016-02-15 20:34:59 +00:00
|
|
|
buildInputs = [
|
2019-11-20 03:30:05 +00:00
|
|
|
barcode gtk3 gtk-doc yelp-tools
|
2021-05-07 22:18:14 +01:00
|
|
|
gnome.gnome-common gsettings-desktop-schemas
|
2017-03-18 23:38:47 +00:00
|
|
|
itstool libxml2 librsvg libe-book libtool
|
2016-02-15 20:34:59 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/glabels-3" \
|
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
|
|
|
|
2019-04-25 07:46:07 +01:00
|
|
|
passthru = {
|
2021-05-07 22:18:14 +01:00
|
|
|
updateScript = gnome.updateScript {
|
2019-04-25 07:46:07 +01:00
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "none";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-15 20:34:59 +00:00
|
|
|
description = "Create labels and business cards";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://glabels.org/";
|
2018-12-17 19:04:10 +00:00
|
|
|
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.nico202 ];
|
2016-02-15 20:34:59 +00:00
|
|
|
};
|
|
|
|
}
|