nixpkgs/pkgs/applications/editors/lifeograph/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1007 B
Nix
Raw Normal View History

2021-11-30 15:49:58 +00:00
{ stdenv, lib, fetchgit, pkg-config, meson, ninja
2022-04-27 23:22:38 +01:00
, enchant, gtkmm3, libchamplain, libgcrypt, shared-mime-info }:
2021-11-30 15:49:58 +00:00
stdenv.mkDerivation rec {
pname = "lifeograph";
2022-04-27 23:22:38 +01:00
version = "2.0.3";
2021-11-30 15:49:58 +00:00
src = fetchgit {
url = "https://git.launchpad.net/lifeograph";
2022-04-27 23:22:38 +01:00
rev = "v${version}";
sha256 = "sha256-RotbTdTtpwXmo+UKOyp93IAC6CCstv++KtnX2doN+nM=";
2021-11-30 15:49:58 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
2022-04-27 23:22:38 +01:00
shared-mime-info # for update-mime-database
2021-11-30 15:49:58 +00:00
];
buildInputs = [
libgcrypt
enchant
gtkmm3
libchamplain
];
postInstall = ''
substituteInPlace $out/share/applications/net.sourceforge.Lifeograph.desktop \
--replace "Exec=" "Exec=$out/bin/"
'';
meta = with lib; {
homepage = "http://lifeograph.sourceforge.net/wiki/Main_Page";
description = "Lifeograph is an off-line and private journal and note taking application";
license = licenses.gpl3Only;
maintainers = with maintainers; [ wolfangaukang ];
platforms = platforms.linux;
};
}