nixpkgs/pkgs/applications/editors/vscode/generic.nix

97 lines
3.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, makeDesktopItem
2018-12-17 04:09:21 +01:00
, unzip, libsecret, libXScrnSaver, wrapGAppsHook
, gtk2, atomEnv, at-spi2-atk, autoPatchelfHook
, systemd, fontconfig
2016-04-22 12:27:38 +02:00
2019-05-21 20:17:01 +02:00
# Attributes inherit from specific versions
, version, src, meta, sourceRoot
, executableName, longName, shortName, pname
}:
2016-04-22 13:23:24 +02:00
2019-05-21 20:17:01 +02:00
let
inherit (stdenv.hostPlatform) system;
2016-04-03 17:07:05 +02:00
in
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2016-04-03 17:07:05 +02:00
2019-05-21 20:17:01 +02:00
inherit pname version src sourceRoot;
2016-04-03 17:07:05 +02:00
passthru = {
inherit executableName;
};
2016-04-22 12:27:38 +02:00
desktopItem = makeDesktopItem {
name = executableName;
desktopName = longName;
comment = "Code Editing. Redefined.";
genericName = "Text Editor";
exec = "${executableName} %U";
icon = "code";
startupNotify = "true";
categories = "Utility;TextEditor;Development;IDE;";
mimeType = "text/plain;inode/directory;";
extraEntries = ''
StartupWMClass=${shortName}
Actions=new-empty-window;
Keywords=vscode;
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=${executableName} --new-window %F
Icon=code
'';
};
urlHandlerDesktopItem = makeDesktopItem {
name = executableName + "-url-handler";
desktopName = longName + " - URL Handler";
comment = "Code Editing. Redefined.";
2016-04-22 12:27:38 +02:00
genericName = "Text Editor";
exec = executableName + " --open-url %U";
icon = "code";
startupNotify = "true";
categories = "Utility;TextEditor;Development;IDE;";
mimeType = "x-scheme-handler/vscode;";
extraEntries = ''
NoDisplay=true
Keywords=vscode;
'';
2016-04-22 12:27:38 +02:00
};
2018-12-17 04:09:21 +01:00
buildInputs = (if stdenv.isDarwin
then [ unzip ]
else [ gtk2 at-spi2-atk wrapGAppsHook ] ++ atomEnv.packages)
++ [ libsecret libXScrnSaver ];
2020-03-12 11:52:53 +01:00
runtimeDependencies = lib.optional (stdenv.isLinux) [ systemd.lib fontconfig.lib ];
2018-12-17 04:09:21 +01:00
nativeBuildInputs = lib.optional (!stdenv.isDarwin) autoPatchelfHook;
2016-04-03 17:07:05 +02:00
dontBuild = true;
dontConfigure = true;
installPhase =
if system == "x86_64-darwin" then ''
mkdir -p "$out/Applications/${longName}.app" $out/bin
cp -r ./* "$out/Applications/${longName}.app"
ln -s "$out/Applications/${longName}.app/Contents/Resources/app/bin/code" $out/bin/${executableName}
'' else ''
mkdir -p $out/lib/vscode $out/bin
cp -r ./* $out/lib/vscode
2017-08-30 13:58:38 +02:00
ln -s $out/lib/vscode/bin/${executableName} $out/bin
2016-04-22 12:27:38 +02:00
mkdir -p $out/share/applications
ln -s $desktopItem/share/applications/${executableName}.desktop $out/share/applications/${executableName}.desktop
ln -s $urlHandlerDesktopItem/share/applications/${executableName}-url-handler.desktop $out/share/applications/${executableName}-url-handler.desktop
2016-04-22 12:27:38 +02:00
mkdir -p $out/share/pixmaps
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
# Override the previously determined VSCODE_PATH with the one we know to be correct
2019-04-17 23:50:11 +02:00
sed -i "/ELECTRON=/iVSCODE_PATH='$out/lib/vscode'" $out/bin/${executableName}
grep -q "VSCODE_PATH='$out/lib/vscode'" $out/bin/${executableName} # check if sed succeeded
'';
2016-04-03 17:07:05 +02:00
2019-05-21 20:17:01 +02:00
inherit meta;
2016-04-03 17:07:05 +02:00
}