about summary refs log tree commit diff
path: root/pkgs/tools/system/wslu
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-01-18 15:54:40 +0100
committerGitHub <noreply@github.com>2023-01-18 15:54:40 +0100
commitc667f030692a7dfdf0aacef0e80c9803d772b76f (patch)
tree73588bcf774854d31655a0500191b9e15d09dac7 /pkgs/tools/system/wslu
parent3998d52508f357451c4e1b40fbd8b1ecc4b2097f (diff)
wslu: 4.1.0 -> 4.1.1 (#211396)
Co-authored-by: Joao Sa <me@joaomsa.com>
Diffstat (limited to 'pkgs/tools/system/wslu')
-rw-r--r--pkgs/tools/system/wslu/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/tools/system/wslu/default.nix b/pkgs/tools/system/wslu/default.nix
index 596c722bb3df3..f765da194c0e5 100644
--- a/pkgs/tools/system/wslu/default.nix
+++ b/pkgs/tools/system/wslu/default.nix
@@ -5,19 +5,22 @@
 
 stdenv.mkDerivation rec {
   pname = "wslu";
-  version = "4.1.0";
+  version = "4.1.1";
 
   src = fetchFromGitHub {
     owner = "wslutilities";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-DlWI+rHj1vSJzJ8VJnUfoPH6t4LQhqxJgRKqz41fVmY=";
+    hash = "sha256-yhugh836BoSISbTu19ubLOrz5X31Opu5QtCR0DXrbWc=";
   };
 
-  makeFlags = [ "DESTDIR=$(out)" ];
+  makeFlags = [
+    "DESTDIR=$(out)"
+    "PREFIX="
+  ];
 
   meta = with lib; {
-    description = "A collection of utilities for Windows 10 Linux Subsystems";
+    description = "A collection of utilities for Windows Subsystem for Linux";
     homepage = "https://github.com/wslutilities/wslu";
     changelog = "https://github.com/wslutilities/wslu/releases/tag/v${version}";
     license = licenses.gpl3Plus;