summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11/xautomation/default.nix
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-07-14 17:10:11 +0200
committerFelix Buehler <account@buehler.rocks>2021-07-16 00:17:12 +0200
commit1e9baed56b85263104f21170a1d2be315876a101 (patch)
tree903ccb3615c2b22ae30f5299af147e497d1b8bbf /pkgs/tools/X11/xautomation/default.nix
parentb141a58ff28c1b14fea9292dbcfe2a5af2da923c (diff)
various: cleanup of 'inherit version;'
Diffstat (limited to 'pkgs/tools/X11/xautomation/default.nix')
-rw-r--r--pkgs/tools/X11/xautomation/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/X11/xautomation/default.nix b/pkgs/tools/X11/xautomation/default.nix
index 0521b6f8b3b4..a1fb88176325 100644
--- a/pkgs/tools/X11/xautomation/default.nix
+++ b/pkgs/tools/X11/xautomation/default.nix
@@ -1,9 +1,8 @@
{ lib, stdenv, fetchurl, pkg-config, libpng, libX11, libXext, libXi, libXtst }:
-let version = "1.09"; in
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "xautomation";
- inherit version;
+ version = "1.09";
src = fetchurl {
url = "https://www.hoopajoo.net/static/projects/xautomation-${version}.tar.gz";
sha256 = "03azv5wpg65h40ip2kk1kdh58vix4vy1r9bihgsq59jx2rhjr3zf";