6b88df04c1
* 3p/buzz: bump to latest master (1.6.0)
* 3p/emacs/explain-pause-mode: adjust to package-build update
MELPA's package build now cares about git revisions, but calling VC
commands in a nix build is usually a bad idea. Thus upstream nixpkgs
passes `$commit` to the `buildPhase` and otherwise fails with an
error message that doesn't really point to the issue. Upstream change:
9140d4b06f
* 3p/overlays/emacs: udpate to 2021-07-25 to support the package-build
update. Without this emacsPackages.xelb (for tazjin's exwm) would fail.
Change-Id: I7cd782fe7d66ed4ea78c529b79fe761d921f46a8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3253
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: grfn <grfn@gws.fyi>
30 lines
609 B
Nix
30 lines
609 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
depot.third_party.naersk.buildPackage {
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "jonhoo";
|
|
repo = "buzz";
|
|
rev = "02479643ed1b0325050245dbb3b70411b8cffb7a";
|
|
sha256 = "1spklfv02qlinlail5rmhh1c4926gyrkr2ydd9g6z919rxkl0ywk";
|
|
};
|
|
|
|
buildInputs = with pkgs; [
|
|
pkgconfig
|
|
dbus_libs
|
|
glib
|
|
openssl
|
|
cairo
|
|
pango
|
|
atk
|
|
gdk-pixbuf
|
|
gtk3
|
|
dbus-glib
|
|
libappindicator-gtk3
|
|
llvmPackages.llvm
|
|
llvmPackages.bintools
|
|
llvmPackages.clang
|
|
llvmPackages.libclang
|
|
];
|
|
|
|
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib/libclang.so";
|
|
}
|