2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, lib, makeDesktopItem
|
2018-12-17 03:09:21 +00:00
|
|
|
, unzip, libsecret, libXScrnSaver, wrapGAppsHook
|
|
|
|
, gtk2, atomEnv, at-spi2-atk, autoPatchelfHook
|
2020-10-11 13:58:44 +01:00
|
|
|
, systemd, fontconfig, libdbusmenu
|
2016-04-22 11:27:38 +01:00
|
|
|
|
2021-02-08 12:54:24 +00:00
|
|
|
# Populate passthru.tests
|
|
|
|
, tests
|
|
|
|
|
2019-05-21 19:17:01 +01:00
|
|
|
# Attributes inherit from specific versions
|
|
|
|
, version, src, meta, sourceRoot
|
|
|
|
, executableName, longName, shortName, pname
|
|
|
|
}:
|
2016-04-22 12:23:24 +01:00
|
|
|
|
2019-05-21 19:17:01 +01:00
|
|
|
let
|
2019-02-10 04:03:48 +00:00
|
|
|
inherit (stdenv.hostPlatform) system;
|
2016-04-03 16:07:05 +01:00
|
|
|
in
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2019-05-21 19:17:01 +01:00
|
|
|
inherit pname version src sourceRoot;
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2018-11-04 01:29:00 +00:00
|
|
|
passthru = {
|
2021-02-08 12:54:24 +00:00
|
|
|
inherit executableName tests;
|
2018-11-04 01:29:00 +00:00
|
|
|
};
|
|
|
|
|
2016-04-22 11:27:38 +01:00
|
|
|
desktopItem = makeDesktopItem {
|
2018-11-04 01:29:00 +00:00
|
|
|
name = executableName;
|
2019-01-27 14:05:42 +00:00
|
|
|
desktopName = longName;
|
|
|
|
comment = "Code Editing. Redefined.";
|
|
|
|
genericName = "Text Editor";
|
2020-11-24 11:38:25 +00:00
|
|
|
exec = "${executableName} %F";
|
2020-04-01 05:35:01 +01:00
|
|
|
icon = "code";
|
2019-01-27 14:05:42 +00:00
|
|
|
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
|
2020-04-01 05:35:01 +01:00
|
|
|
Icon=code
|
2019-01-27 14:05:42 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
urlHandlerDesktopItem = makeDesktopItem {
|
|
|
|
name = executableName + "-url-handler";
|
|
|
|
desktopName = longName + " - URL Handler";
|
|
|
|
comment = "Code Editing. Redefined.";
|
2016-04-22 11:27:38 +01:00
|
|
|
genericName = "Text Editor";
|
2019-01-27 14:05:42 +00:00
|
|
|
exec = executableName + " --open-url %U";
|
2020-04-01 05:35:01 +01:00
|
|
|
icon = "code";
|
2019-01-27 14:05:42 +00:00
|
|
|
startupNotify = "true";
|
|
|
|
categories = "Utility;TextEditor;Development;IDE;";
|
|
|
|
mimeType = "x-scheme-handler/vscode;";
|
|
|
|
extraEntries = ''
|
|
|
|
NoDisplay=true
|
|
|
|
Keywords=vscode;
|
|
|
|
'';
|
2016-04-22 11:27:38 +01:00
|
|
|
};
|
|
|
|
|
2018-12-17 03:09:21 +00:00
|
|
|
buildInputs = (if stdenv.isDarwin
|
|
|
|
then [ unzip ]
|
|
|
|
else [ gtk2 at-spi2-atk wrapGAppsHook ] ++ atomEnv.packages)
|
|
|
|
++ [ libsecret libXScrnSaver ];
|
|
|
|
|
2020-10-11 13:58:44 +01:00
|
|
|
runtimeDependencies = lib.optional (stdenv.isLinux) [ (lib.getLib systemd) fontconfig.lib libdbusmenu ];
|
2020-03-04 10:54:33 +00:00
|
|
|
|
2018-12-17 03:09:21 +00:00
|
|
|
nativeBuildInputs = lib.optional (!stdenv.isDarwin) autoPatchelfHook;
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2019-02-10 04:03:48 +00:00
|
|
|
dontBuild = true;
|
|
|
|
dontConfigure = true;
|
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
installPhase =
|
2019-02-10 04:03:48 +00:00
|
|
|
if system == "x86_64-darwin" then ''
|
2019-10-05 19:54:02 +01:00
|
|
|
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}
|
2017-03-24 20:05:59 +00:00
|
|
|
'' else ''
|
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
2017-08-30 12:58:38 +01:00
|
|
|
|
2018-11-04 01:29:00 +00:00
|
|
|
ln -s $out/lib/vscode/bin/${executableName} $out/bin
|
2016-04-22 11:27:38 +01:00
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
mkdir -p $out/share/applications
|
2020-04-01 05:35:01 +01:00
|
|
|
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 11:27:38 +01:00
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
|
2019-04-17 10:42:37 +01:00
|
|
|
|
|
|
|
# Override the previously determined VSCODE_PATH with the one we know to be correct
|
2019-04-17 22:50:11 +01: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
|
2017-03-24 20:05:59 +00:00
|
|
|
'';
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2019-05-21 19:17:01 +01:00
|
|
|
inherit meta;
|
2016-04-03 16:07:05 +01:00
|
|
|
}
|