Permalink
Cannot retrieve contributors at this time
32 lines (25 sloc)
1 KB
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { appimageTools, fetchurl, lib, gsettings-desktop-schemas, gtk3}: | |
| let | |
| pname = "obsidian"; | |
| version = "0.7.3"; | |
| in | |
| appimageTools.wrapType2 rec { | |
| name = "${pname}-${version}"; | |
| src = fetchurl { | |
| url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/Obsidian-${version}.AppImage"; | |
| sha256 = "1qiag5szagalik72j8s2dmp7075g48jxgcdy0wgd02kfv90ai0y6"; | |
| }; | |
| 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. | |
| extraInstallCommands = "mv $out/bin/{${name},${pname}}"; | |
| 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; | |
| maintainers = with maintainers; [ conradmearns ]; | |
| platforms = [ "x86_64-linux" ]; | |
| }; | |
| } |