mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
b4047a0455
treewide: remove `multiArch=false` and wrong usage of `extraPkgs`
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, appimageTools
|
|
}:
|
|
|
|
let
|
|
pname = "nrfconnect";
|
|
version = "4.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://nsscprodmedia.blob.core.windows.net/prod/software-and-other-downloads/desktop-software/nrf-connect-for-desktop/${lib.versions.major version}-${lib.versions.minor version}-${lib.versions.patch version}/nrfconnect-${version}-x86_64.appimage";
|
|
hash = "sha256-x/vVSOEajuQtLATRXk8DVLlXHegCqP+acecaOFNeBb8=";
|
|
name = "${pname}-${version}.AppImage";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
|
|
in appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraPkgs = pkgs: [ pkgs.segger-jlink ];
|
|
|
|
extraInstallCommands = ''
|
|
install -Dm444 ${appimageContents}/nrfconnect.desktop -t $out/share/applications
|
|
install -Dm444 ${appimageContents}/usr/share/icons/hicolor/512x512/apps/nrfconnect.png \
|
|
-t $out/share/icons/hicolor/512x512/apps
|
|
substituteInPlace $out/share/applications/nrfconnect.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=nrfconnect'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Nordic Semiconductor nRF Connect for Desktop";
|
|
homepage = "https://www.nordicsemi.com/Products/Development-tools/nRF-Connect-for-desktop";
|
|
license = licenses.unfree;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ stargate01 ];
|
|
mainProgram = "nrfconnect";
|
|
};
|
|
}
|