nixpkgs/pkgs/tools/system/wslu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
586 B
Nix
Raw Normal View History

2021-05-19 17:35:57 +00:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "wslu";
2022-06-10 11:15:48 +00:00
version = "3.2.4";
2021-05-19 17:35:57 +00:00
src = fetchFromGitHub {
owner = "wslutilities";
repo = pname;
rev = "v${version}";
2022-06-10 11:15:48 +00:00
hash = "sha256-bZFccqFZF6Xt0yAw6JSONNhosBliHQc7KJQ8Or7UvMA=";
2021-05-19 17:35:57 +00:00
};
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;
};
}