2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, lib, makeDesktopItem
|
2021-03-16 21:09:45 +00:00
|
|
|
, unzip, libsecret, libXScrnSaver, libxshmfence, wrapGAppsHook
|
2018-12-17 03:09:21 +00:00
|
|
|
, gtk2, atomEnv, at-spi2-atk, autoPatchelfHook
|
2021-09-03 12:58:51 +01:00
|
|
|
, systemd, fontconfig, libdbusmenu, glib, buildFHSUserEnvBubblewrap
|
2021-04-08 08:05:37 +01:00
|
|
|
, writeShellScriptBin
|
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
|
2021-05-24 20:46:44 +01:00
|
|
|
, executableName, longName, shortName, pname, updateScript
|
2021-06-24 07:45:06 +01:00
|
|
|
# sourceExecutableName is the name of the binary in the source archive, over
|
|
|
|
# which we have no control
|
|
|
|
, sourceExecutableName ? executableName
|
2019-05-21 19:17:01 +01:00
|
|
|
}:
|
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;
|
2021-04-08 08:05:37 +01:00
|
|
|
unwrapped = 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 = {
|
2019-10-16 22:09:38 +01:00
|
|
|
inherit executableName longName tests updateScript;
|
2021-04-08 08:05:37 +01:00
|
|
|
fhs = fhs {};
|
|
|
|
fhsWithPackages = f: fhs { additionalPkgs = f; };
|
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
|
|
|
};
|
|
|
|
|
2021-03-18 12:35:59 +00:00
|
|
|
buildInputs = [ libsecret libXScrnSaver libxshmfence ]
|
2021-04-14 13:50:46 +01:00
|
|
|
++ lib.optionals (!stdenv.isDarwin) ([ gtk2 at-spi2-atk ] ++ atomEnv.packages);
|
2018-12-17 03:09:21 +00:00
|
|
|
|
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
|
|
|
|
2021-04-14 13:50:46 +01:00
|
|
|
nativeBuildInputs = [unzip] ++ lib.optionals (!stdenv.isDarwin) [ autoPatchelfHook wrapGAppsHook ];
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2019-02-10 04:03:48 +00:00
|
|
|
dontBuild = true;
|
|
|
|
dontConfigure = true;
|
|
|
|
|
2021-04-14 13:50:46 +01:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2021-07-11 21:51:17 +01:00
|
|
|
'' + (if stdenv.isDarwin then ''
|
2021-04-14 13:50:46 +01:00
|
|
|
mkdir -p "$out/Applications/${longName}.app" $out/bin
|
|
|
|
cp -r ./* "$out/Applications/${longName}.app"
|
2021-06-24 07:45:06 +01:00
|
|
|
ln -s "$out/Applications/${longName}.app/Contents/Resources/app/bin/${sourceExecutableName}" $out/bin/${executableName}
|
2021-04-14 13:50:46 +01:00
|
|
|
'' else ''
|
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
|
|
|
|
2021-06-24 07:45:06 +01:00
|
|
|
ln -s $out/lib/vscode/bin/${sourceExecutableName} $out/bin/${executableName}
|
2021-04-14 13:50:46 +01: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
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
'') + ''
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2021-09-03 12:58:51 +01:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
# Add gio to PATH so that moving files to the trash works when not using a desktop environment
|
|
|
|
--prefix PATH : ${glib.bin}/bin
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2019-05-21 19:17:01 +01:00
|
|
|
inherit meta;
|
2021-04-08 08:05:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Vscode and variants allow for users to download and use extensions
|
|
|
|
# which often include the usage of pre-built binaries.
|
|
|
|
# This has been an on-going painpoint for many users, as
|
|
|
|
# a full extension update cycle has to be done through nixpkgs
|
|
|
|
# in order to create or update extensions.
|
|
|
|
# See: #83288 #91179 #73810 #41189
|
|
|
|
#
|
|
|
|
# buildFHSUserEnv allows for users to use the existing vscode
|
|
|
|
# extension tooling without significant pain.
|
|
|
|
fhs = { additionalPkgs ? pkgs: [] }: buildFHSUserEnvBubblewrap {
|
|
|
|
# also determines the name of the wrapped command
|
|
|
|
name = executableName;
|
|
|
|
|
|
|
|
# additional libraries which are commonly needed for extensions
|
|
|
|
targetPkgs = pkgs: (with pkgs; [
|
|
|
|
# ld-linux-x86-64-linux.so.2 and others
|
|
|
|
glibc
|
|
|
|
|
|
|
|
# dotnet
|
|
|
|
curl
|
|
|
|
icu
|
|
|
|
libunwind
|
|
|
|
libuuid
|
|
|
|
openssl
|
|
|
|
zlib
|
|
|
|
|
|
|
|
# mono
|
|
|
|
krb5
|
|
|
|
]) ++ additionalPkgs pkgs;
|
|
|
|
|
|
|
|
# restore desktop item icons
|
|
|
|
extraInstallCommands = ''
|
|
|
|
mkdir -p $out/share/applications
|
|
|
|
for item in ${unwrapped}/share/applications/*.desktop; do
|
|
|
|
ln -s $item $out/share/applications/
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
runScript = "${unwrapped}/bin/${executableName}";
|
|
|
|
|
|
|
|
# vscode likes to kill the parent so that the
|
|
|
|
# gui application isn't attached to the terminal session
|
|
|
|
dieWithParent = false;
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit executableName;
|
|
|
|
inherit (unwrapped) pname version; # for home-manager module
|
|
|
|
};
|
|
|
|
|
2021-04-24 20:42:38 +01:00
|
|
|
meta = meta // {
|
|
|
|
description = ''
|
|
|
|
Wrapped variant of ${pname} which launches in a FHS compatible envrionment.
|
|
|
|
Should allow for easy usage of extensions without nix-specific modifications.
|
|
|
|
'';
|
|
|
|
};
|
2021-04-08 08:05:37 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
unwrapped
|