wslu: 4.1.0 -> 4.1.1 (#211396)

Co-authored-by: Joao Sa <me@joaomsa.com>
This commit is contained in:
Sandro 2023-01-18 15:54:40 +01:00 committed by GitHub
parent 3998d52508
commit c667f03069
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;