{ lib , stdenv , fetchFromGitHub , copyDesktopItems }: stdenv.mkDerivation rec { pname = "wslu"; version = "4.1.1"; src = fetchFromGitHub { owner = "wslutilities"; repo = "wslu"; rev = "v${version}"; hash = "sha256-yhugh836BoSISbTu19ubLOrz5X31Opu5QtCR0DXrbWc="; }; nativeBuildInputs = [ copyDesktopItems ]; patches = [ ./fallback-conf-nix-store.diff ./fix-desktop-item.patch ]; postPatch = '' substituteInPlace src/wslu-header \ --subst-var out ''; makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; desktopItems = [ "src/etc/wslview.desktop" ]; meta = with lib; { 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; maintainers = with maintainers; [ jamiemagee ]; platforms = platforms.linux; }; }