nixpkgs/pkgs/applications/misc/obsidian/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

2020-06-25 00:38:32 +00:00
{ appimageTools, fetchurl, lib, gsettings-desktop-schemas, gtk3}:
let
pname = "obsidian";
2020-08-19 06:55:07 +00:00
version = "0.8.2";
2020-06-25 00:38:32 +00:00
in
appimageTools.wrapType2 rec {
name = "${pname}-${version}";
src = fetchurl {
url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/Obsidian-${version}.AppImage";
2020-08-19 06:55:07 +00:00
sha256 = "04jgsd97ivdm84diiafwqxzc9vvga1gsr7xicmqhdq05ns3xsfyz";
2020-06-25 00:38:32 +00:00
};
profile = ''
export LC_ALL=C.UTF-8
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
'';
# Strip version from binary name.
2020-06-25 16:33:11 +00:00
extraInstallCommands = "mv $out/bin/{${name},${pname}}";
2020-06-25 00:38:32 +00:00
meta = with lib; {
description = "Obsidian is a powerful knowledge base that works on top of a local folder of plain text Markdown files.";
homepage = "https://obsidian.md";
license = licenses.obsidian;
2020-06-25 00:38:32 +00:00
maintainers = with maintainers; [ conradmearns ];
platforms = [ "x86_64-linux" ];
};
}