summary refs log tree commit diff
path: root/pkgs/tools/system/lshw
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2018-11-05 00:50:34 +0100
committerPatrick Hilhorst <git@hilhorst.be>2018-11-06 00:06:22 +0100
commitf54f5fdaaa29594d163b3193bb00a9a84846ab4b (patch)
treeb7bc1c75ec1ba38107fdb01eb20e53180feb593f /pkgs/tools/system/lshw
parent9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1 (diff)
treewide: various version number fixes
Diffstat (limited to 'pkgs/tools/system/lshw')
-rw-r--r--pkgs/tools/system/lshw/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/lshw/default.nix b/pkgs/tools/system/lshw/default.nix
index d57b651897530..5711dff578395 100644
--- a/pkgs/tools/system/lshw/default.nix
+++ b/pkgs/tools/system/lshw/default.nix
@@ -6,10 +6,10 @@ let numVersion = "02.18"; # :(
 in
 stdenv.mkDerivation rec {
   name = "lshw-${numVersion}b";
-  version = "B.${numVersion}";
+  version = "${numVersion}";
 
   src = fetchurl {
-    url = "https://ezix.org/software/files/lshw-${version}.tar.gz";
+    url = "https://ezix.org/software/files/lshw-B.${version}.tar.gz";
     sha256 = "0brwra4jld0d53d7jsgca415ljglmmx1l2iazpj4ndilr48yy8mf";
   };