mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
75 lines
2.0 KiB
Nix
75 lines
2.0 KiB
Nix
{ lib
|
|
, node_webkit
|
|
, pkgs
|
|
, copyDesktopItems
|
|
, makeDesktopItem
|
|
, stdenv
|
|
, writeShellScript
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
let
|
|
# parse the version from package.json
|
|
version =
|
|
let
|
|
packageJson = lib.importJSON ./package.json;
|
|
splits = builtins.split "^.*#v(.*)$" (builtins.getAttr "onlykey" (builtins.head packageJson));
|
|
matches = builtins.elemAt splits 1;
|
|
elem = builtins.head matches;
|
|
in
|
|
elem;
|
|
|
|
# this must be updated anytime this package is updated.
|
|
onlykeyPkg = "onlykey-git+https://github.com/trustcrypto/OnlyKey-App.git#v${version}";
|
|
|
|
# define a shortcut to get to onlykey.
|
|
onlykey = self."${onlykeyPkg}";
|
|
|
|
super = import ./onlykey.nix {
|
|
inherit pkgs;
|
|
inherit (stdenv.hostPlatform) system;
|
|
};
|
|
|
|
self = super // {
|
|
"${onlykeyPkg}" = super."${onlykeyPkg}".override (attrs: {
|
|
# when installing packages, nw tries to download nwjs in its postInstall
|
|
# script. There are currently no other postInstall scripts, so this
|
|
# should not break other things.
|
|
npmFlags = attrs.npmFlags or "" + " --ignore-scripts";
|
|
|
|
# this package requires to be built in order to become runnable.
|
|
postInstall = ''
|
|
cd $out/lib/node_modules/${attrs.packageName}
|
|
npm run build
|
|
'';
|
|
});
|
|
};
|
|
|
|
script = writeShellScript "${onlykey.packageName}-starter-${onlykey.version}" ''
|
|
${node_webkit}/bin/nw ${onlykey}/lib/node_modules/${onlykey.packageName}/build
|
|
'';
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "${onlykey.packageName}";
|
|
inherit (onlykey) version;
|
|
dontUnpack = true;
|
|
nativeBuildInputs = [ wrapGAppsHook3 copyDesktopItems ];
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = onlykey.packageName;
|
|
exec = script;
|
|
icon = "${onlykey}/lib/node_modules/${onlykey.packageName}/resources/onlykey_logo_128.png";
|
|
desktopName = onlykey.packageName;
|
|
genericName = onlykey.packageName;
|
|
})
|
|
];
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
ln -s ${script} $out/bin/onlykey
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|