summaryrefslogtreecommitdiff
path: root/YATwm.nix
diff options
context:
space:
mode:
authorBossCode45 <boss@tehbox.org>2025-05-06 18:00:13 +1200
committerBossCode45 <boss@tehbox.org>2025-05-06 18:00:13 +1200
commitecc333d03abe308ce47c05345f8f90ae6a01b215 (patch)
tree6aa4cc449bf9289c2ac8414931f8a536299c4490 /YATwm.nix
parentd1d4a63d4473cd4910b678cf5b385f622186fbd3 (diff)
parentbc9c5f43f5c8108c3d617716b2c3aeaf553a03e3 (diff)
downloadYATwm-ecc333d03abe308ce47c05345f8f90ae6a01b215.tar.gz
YATwm-ecc333d03abe308ce47c05345f8f90ae6a01b215.zip
Merge branch 'nix'
Diffstat (limited to 'YATwm.nix')
-rw-r--r--YATwm.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/YATwm.nix b/YATwm.nix
index 3c583af..8ffc6a5 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-yQoyXGJE8JrSon/P5uhyN1rRwBH/kz0LCGIly3yNDhg=";
};
installPhase = ''
@@ -26,5 +28,10 @@ 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
+ ];
}