about summary refs log tree commit diff
path: root/users/wpcarro/emacs/pkgs/passage/default.nix
blob: ac87f193b4e28b4cfecab9b9e58da2d50eb5b5d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, depot, ... }:

pkgs.callPackage
  ({ emacsPackages }:
  emacsPackages.trivialBuild {
    pname = "passage";
    version = "1.0.0";
    src = ./passage.el;
    packageRequires = (with emacsPackages; [ dash f s ]);
  }
  )
{ }