wslu: init at 3.2.3

This commit is contained in:
Jamie Magee 2021-05-19 10:35:57 -07:00
parent 90e5205085
commit 5017db6db0
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "wslu";
version = "3.2.3";
src = fetchFromGitHub {
owner = "wslutilities";
repo = pname;
rev = "v${version}";
sha512 = "2mkvdl65hnwflmi635ngmsm1aqsablz2gypn3a1adby1mwwdc57xym8kkg5359g3mvksac6n43ji2z48lfpvlay64z793q2v0z6by02";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A collection of utilities for Windows 10 Linux Subsystems";
homepage = "https://github.com/wslutilities/wslu";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jamiemagee ];
platforms = platforms.linux;
};
}

View file

@ -9716,6 +9716,8 @@ in
woeusb = callPackage ../tools/misc/woeusb { };
wslu = callPackage ../tools/system/wslu { };
chase = callPackage ../tools/system/chase { };
wicd = callPackage ../tools/networking/wicd { };