summaryrefslogtreecommitdiff
path: root/YATwm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'YATwm.nix')
-rw-r--r--YATwm.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/YATwm.nix b/YATwm.nix
index 3c583af..515fad5 100644
--- a/YATwm.nix
+++ b/YATwm.nix
@@ -3,7 +3,9 @@
fetchgit,
xorg,
libnotify,
- pkg-config
+ pkg-config,
+ inputs,
+ ...
}:
@@ -14,7 +16,7 @@ stdenv.mkDerivation {
src = fetchgit {
url = "https://git.tehbox.org/cgit/boss/YATwm.git/";
rev = "v0.0.1";
- hash = "sha256-c0GIwZFZoaYsq6cK1cPzjxwPZzNg7tyDh44vLFsdMAI=";
+ hash = "sha256-A4Yra/903rOeEbXfFia/A2HRPrFyE1b05mzHWlDImCY=";
};
installPhase = ''
@@ -26,5 +28,11 @@ install -D -m 644 config $out/etc/YATwm/config
runHook postInstall
'';
- buildInputs = [ xorg.libX11 xorg.libXrandr libnotify pkg-config ];
+ buildInputs = [
+ xorg.libX11
+ xorg.libXrandr
+ libnotify
+ pkg-config
+ inputs.libCommands.packages.x86_64-linux.default
+ ];
}