Unverified Commit c667f030 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

wslu: 4.1.0 -> 4.1.1 (#211396)



Co-authored-by: default avatarJoao Sa <me@joaomsa.com>
parent 3998d525
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;