summaryrefslogtreecommitdiffstats
path: root/pkgs/bspwc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/bspwc/default.nix')
-rw-r--r--pkgs/bspwc/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/bspwc/default.nix b/pkgs/bspwc/default.nix
index d499354..77d1904 100644
--- a/pkgs/bspwc/default.nix
+++ b/pkgs/bspwc/default.nix
@@ -1,8 +1,9 @@
-{ stdenv, fetchFromGitHub
+{ stdenv, fetchgit
, meson, ninja, pkgconfig
, wlroots, wayland, wayland-protocols
, pixman, libxkbcommon
, libudev, mesa_noglu, libX11 # not mentioned in meson.build...
+, wltrunk
}:
let
@@ -12,16 +13,15 @@ stdenv.mkDerivation rec {
name = "bspwc-${version}";
version = metadata.rev;
- src = fetchFromGitHub {
- owner = "Bl4ckb0ne";
- repo = "bspwc";
+ src = fetchgit {
+ url = "https://git.sr.ht/~bl4ckb0ne/bspwc";
rev = version;
sha256 = metadata.sha256;
};
nativeBuildInputs = [ pkgconfig meson ninja ];
buildInputs = [
- wlroots wayland wayland-protocols wlroots
+ wlroots wayland wayland-protocols wlroots wltrunk
pixman libxkbcommon libudev mesa_noglu libX11
];
mesonFlags = [ "-Dauto_features=enabled" ];