Merge pull request #208305 from SuperSandro2000/wslu

wslu: 4.0.0 -> 4.1.0
This commit is contained in:
Fabian Affolter 2022-12-30 11:44:50 +01:00 committed by GitHub
commit be5e767930
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,25 @@
{ lib, stdenv, fetchFromGitHub }:
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "wslu";
version = "4.0.0";
version = "4.1.0";
src = fetchFromGitHub {
owner = "wslutilities";
repo = pname;
rev = "v${version}";
hash = "sha256-bW/otr1kqmH2N5sD3R9kYCZyn+BbBZ2fCVGlP1pFnK8=";
hash = "sha256-DlWI+rHj1vSJzJ8VJnUfoPH6t4LQhqxJgRKqz41fVmY=";
};
makeFlags = [ "PREFIX=$(out)" ];
makeFlags = [ "DESTDIR=$(out)" ];
meta = with lib; {
description = "A collection of utilities for Windows 10 Linux Subsystems";
homepage = "https://github.com/wslutilities/wslu";
changelog = "https://github.com/wslutilities/wslu/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jamiemagee ];
platforms = platforms.linux;