blob: 6daee882feda2246a5544453a7e2fb745f03886c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ depot, pkgs, lib, ... }:
# special dance for overriding this into the fixed-point of emacs
# packages, but having it be separately buildable.
pkgs.emacsPackages.callPackage
({ trivialBuild, xelb }: trivialBuild {
pname = "depot-exwm";
version = "canon";
src = ./.;
packageRequires = [ xelb ];
})
{ }
|