tvl-depot/third_party/exwm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
325 B
Nix
Raw Normal View History

{ 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 ];
})
{ }