Merge pull request #100175 from SuperSandro2000/wsl-open

wsl-open: init at 2.1.1
This commit is contained in:
Sandro 2020-12-04 03:12:11 +01:00 committed by GitHub
commit c3b325c17b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, installShellFiles }:
stdenv.mkDerivation rec {
pname = "wsl-open";
version = "2.1.1";
src = fetchFromGitHub {
owner = "4U6U57";
repo = "wsl-open";
rev = "v${version}";
sha256 = "1mwak846zh47p3pp4q5f54cw8d9qk61zn43q81j2pkcm35mv9lzg";
};
nativeBuildInputs = [ installShellFiles ];
installPhase = ''
install -m0755 -D wsl-open.sh $out/bin/wsl-open
installManPage wsl-open.1
'';
meta = with stdenv.lib; {
description = "Open files with xdg-open from Windows Subsystem for Linux (WSL) in Windows applications";
homepage = "https://gitlab.com/4U6U57/wsl-open";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View file

@ -3618,6 +3618,8 @@ in
wshowkeys = callPackage ../tools/wayland/wshowkeys { };
wsl-open = callPackage ../tools/misc/wsl-open { };
xkcdpass = with pythonPackages; toPythonApplication xkcdpass;
xob = callPackage ../tools/X11/xob { };