2018-12-17 03:09:21 +00:00
|
|
|
{ stdenv, lib, fetchurl, makeDesktopItem
|
|
|
|
, unzip, libsecret, libXScrnSaver, wrapGAppsHook
|
|
|
|
, gtk2, atomEnv, at-spi2-atk, autoPatchelfHook
|
|
|
|
, systemd, fontconfig
|
|
|
|
, isInsiders ? false }:
|
2016-04-22 11:27:38 +01:00
|
|
|
|
2016-04-03 16:07:05 +01:00
|
|
|
let
|
2018-11-04 01:29:00 +00:00
|
|
|
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
2019-01-27 14:05:42 +00:00
|
|
|
longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders";
|
|
|
|
shortName = "Code" + lib.optionalString isInsiders " - Insiders";
|
2016-04-22 12:23:24 +01:00
|
|
|
|
2017-04-07 03:18:18 +01:00
|
|
|
plat = {
|
|
|
|
"i686-linux" = "linux-ia32";
|
|
|
|
"x86_64-linux" = "linux-x64";
|
|
|
|
"x86_64-darwin" = "darwin";
|
2018-08-20 20:11:29 +01:00
|
|
|
}.${stdenv.hostPlatform.system};
|
2017-02-06 07:29:49 +00:00
|
|
|
|
2017-04-07 03:18:18 +01:00
|
|
|
sha256 = {
|
2019-01-12 01:02:00 +00:00
|
|
|
"i686-linux" = "1g73fay6fxlqhalkqq5m6rjbp68k9npk0rrxrkhdj8mw0cz74dpm";
|
|
|
|
"x86_64-linux" = "0mil8n5i2ajdyrgq862wq59ajy2122rvvn7m7mxq4ab92sk26rix";
|
|
|
|
"x86_64-darwin" = "07r52scs1sgafzxqal39r8vf9p9qqvwwx8f6z09gqcf6clr6k48q";
|
2018-08-20 20:11:29 +01:00
|
|
|
}.${stdenv.hostPlatform.system};
|
2016-04-04 17:12:11 +01:00
|
|
|
|
2018-08-20 20:11:29 +01:00
|
|
|
archive_fmt = if stdenv.hostPlatform.system == "x86_64-darwin" then "zip" else "tar.gz";
|
2016-04-03 16:07:05 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vscode-${version}";
|
2019-01-12 01:02:00 +00:00
|
|
|
version = "1.30.2";
|
2016-04-03 16:07:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-04-07 03:18:18 +01:00
|
|
|
name = "VSCode_${version}_${plat}.${archive_fmt}";
|
2018-11-04 01:29:00 +00:00
|
|
|
url = "https://vscode-update.azurewebsites.net/${version}/${plat}/stable";
|
2016-04-04 17:12:11 +01:00
|
|
|
inherit sha256;
|
2016-04-03 16:07:05 +01:00
|
|
|
};
|
|
|
|
|
2018-11-04 01:29:00 +00:00
|
|
|
passthru = {
|
|
|
|
inherit executableName;
|
|
|
|
};
|
|
|
|
|
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";
|
2018-11-04 01:29:00 +00:00
|
|
|
exec = executableName;
|
|
|
|
icon = "@out@/share/pixmaps/code.png";
|
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
|
|
|
|
Icon=@out@/share/pixmaps/code.png
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
|
|
|
icon = "@out@/share/pixmaps/code.png";
|
|
|
|
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 ];
|
|
|
|
|
|
|
|
nativeBuildInputs = lib.optional (!stdenv.isDarwin) autoPatchelfHook;
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
installPhase =
|
2018-08-20 20:11:29 +01:00
|
|
|
if stdenv.hostPlatform.system == "x86_64-darwin" then ''
|
2017-03-24 20:05:59 +00:00
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
2018-11-04 01:29:00 +00:00
|
|
|
ln -s $out/lib/vscode/Contents/Resources/app/bin/${executableName} $out/bin
|
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
|
|
|
substituteInPlace $out/lib/vscode/bin/${executableName} --replace '"$CLI" "$@"' '"$CLI" "--skip-getting-started" "$@"'
|
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
|
2018-11-04 01:29:00 +00:00
|
|
|
substitute $desktopItem/share/applications/${executableName}.desktop $out/share/applications/${executableName}.desktop \
|
|
|
|
--subst-var out
|
2019-01-27 14:05:42 +00:00
|
|
|
substitute $urlHandlerDesktopItem/share/applications/${executableName}-url-handler.desktop $out/share/applications/${executableName}-url-handler.desktop \
|
|
|
|
--subst-var out
|
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
|
|
|
|
'';
|
2016-04-03 16:07:05 +01:00
|
|
|
|
2018-08-20 20:11:29 +01:00
|
|
|
postFixup = lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") ''
|
2018-12-17 03:09:21 +00:00
|
|
|
wrapProgram $out/lib/vscode/${executableName} \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ systemd fontconfig ]}
|
2018-07-24 02:01:19 +01:00
|
|
|
|
2017-09-08 17:20:20 +01:00
|
|
|
ln -s ${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0 $out/lib/vscode/libsecret-1.so.0
|
2016-04-03 16:07:05 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-14 18:27:46 +01:00
|
|
|
description = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
2017-08-06 23:05:18 +01:00
|
|
|
Linux and macOS
|
2016-10-14 18:27:46 +01:00
|
|
|
'';
|
2016-04-03 16:07:05 +01:00
|
|
|
longDescription = ''
|
2016-10-14 18:27:46 +01:00
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
2017-08-06 23:05:18 +01:00
|
|
|
Linux and macOS. It includes support for debugging, embedded Git
|
2016-10-14 18:27:46 +01:00
|
|
|
control, syntax highlighting, intelligent code completion, snippets,
|
|
|
|
and code refactoring. It is also customizable, so users can change the
|
|
|
|
editor's theme, keyboard shortcuts, and preferences
|
2016-04-03 16:07:05 +01:00
|
|
|
'';
|
|
|
|
homepage = http://code.visualstudio.com/;
|
2016-04-04 17:12:11 +01:00
|
|
|
downloadPage = https://code.visualstudio.com/Updates;
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2016-04-03 16:07:05 +01:00
|
|
|
};
|
|
|
|
}
|