nixpkgs/pkgs/desktops/gnome-3/apps/bijiben/default.nix

56 lines
1.3 KiB
Nix
Raw Normal View History

2018-03-06 14:06:23 +01:00
{ stdenv, meson, ninja, gettext, fetchurl, pkgconfig
, wrapGAppsHook, itstool, desktop-file-utils
2018-03-06 14:06:23 +01:00
, glib, gtk3, evolution-data-server
, libuuid, webkitgtk, zeitgeist
, gnome3, libxml2 }:
2018-03-06 14:06:23 +01:00
let
2018-05-08 02:34:36 +02:00
version = "3.28.2";
2018-03-06 14:06:23 +01:00
in stdenv.mkDerivation rec {
name = "bijiben-${version}";
src = fetchurl {
url = "mirror://gnome/sources/bijiben/${gnome3.versionBranch version}/${name}.tar.xz";
2018-05-08 02:34:36 +02:00
sha256 = "1z1dqspjpyym27yav7pr813x7k0jdxifgj5rdxgp4m6cs1ixcvjs";
};
doCheck = true;
2017-09-19 04:03:57 +02:00
postPatch = ''
2018-03-06 14:06:23 +01:00
chmod +x build-aux/meson_post_install.py
patchShebangs build-aux/meson_post_install.py
2017-09-19 04:03:57 +02:00
'';
2017-09-19 04:03:57 +02:00
nativeBuildInputs = [
meson ninja pkgconfig gettext itstool libxml2 desktop-file-utils wrapGAppsHook
2017-09-19 04:03:57 +02:00
];
2018-03-06 14:06:23 +01:00
buildInputs = [
glib gtk3 libuuid webkitgtk gnome3.tracker
gnome3.gnome-online-accounts zeitgeist
gnome3.gsettings-desktop-schemas
evolution-data-server
gnome3.defaultIconTheme
];
mesonFlags = [
"-Dzeitgeist=true"
"-Dupdate_mimedb=false"
];
passthru = {
updateScript = gnome3.updateScript {
packageName = "bijiben";
attrPath = "gnome3.bijiben";
};
};
meta = with stdenv.lib; {
description = "Note editor designed to remain simple to use";
2018-03-06 14:06:23 +01:00
homepage = https://wiki.gnome.org/Apps/Bijiben;
license = licenses.gpl3;
2018-03-06 14:06:23 +01:00
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}