1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/programs/emacs/packages.nix
Stefan Ellmauthaler 2f3c092bb3 org-roam-ui manual build for emacs
Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@gmail.com>
2021-10-06 19:56:39 +02:00

20 lines
506 B
Nix

{ config, lib, pkgs, epkgs, ...}:
let
in
with epkgs; rec{
org-roam-ui = trivialBuild{
pname = "org-roam-ui";
version = "2021-10-06";
src = pkgs.fetchFromGitHub {
owner = "org-roam";
repo = "org-roam-ui";
rev = "bae6487afd5e6eec9f04b38b235bbac24042ca62";
sha256 = "14dbdvxf1l0dwbhc0ap3wr3ffafy4cxmwc9b7gm0gzzmcxvszisc";
};
packageRequires = [ f websocket org-roam simple-httpd ];
postInstall = ''
cp -r out $out/share/emacs/site-lisp
'';
};
}