mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +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)
106 lines
2.1 KiB
Nix
106 lines
2.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, zlib
|
|
, libusb1
|
|
, libGL
|
|
, qmake
|
|
, wrapGAppsHook3
|
|
, wrapQtAppsHook
|
|
, mkDerivation
|
|
|
|
, qttools
|
|
, qtbase
|
|
, qt3d
|
|
, qtsvg
|
|
, qtserialport
|
|
, qtdeclarative
|
|
, qtquickcontrols
|
|
, qtquickcontrols2
|
|
, qtgraphicaleffects
|
|
, qtwayland
|
|
, nix-update-script
|
|
}:
|
|
let
|
|
pname = "qFlipper";
|
|
version = "1.3.3";
|
|
sha256 = "sha256-/Xzy+OA0Nl/UlSkOOZW2YsOHdJvS/7X3Z3ITkPByAOc=";
|
|
timestamp = "99999999999";
|
|
commit = "nix-${version}";
|
|
|
|
in
|
|
mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flipperdevices";
|
|
repo = "qFlipper";
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
inherit sha256;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qmake
|
|
qttools
|
|
wrapGAppsHook3
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
zlib
|
|
libusb1
|
|
libGL
|
|
|
|
qtbase
|
|
qt3d
|
|
qtsvg
|
|
qtserialport
|
|
qtdeclarative
|
|
qtquickcontrols
|
|
qtquickcontrols2
|
|
qtgraphicaleffects
|
|
] ++ lib.optionals (stdenv.isLinux) [
|
|
qtwayland
|
|
];
|
|
|
|
qmakeFlags = [
|
|
"DEFINES+=DISABLE_APPLICATION_UPDATES"
|
|
"CONFIG+=qtquickcompiler"
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace qflipper_common.pri \
|
|
--replace 'GIT_VERSION = unknown' 'GIT_VERSION = "${version}"' \
|
|
--replace 'GIT_TIMESTAMP = 0' 'GIT_TIMESTAMP = ${timestamp}' \
|
|
--replace 'GIT_COMMIT = unknown' 'GIT_COMMIT = "${commit}"'
|
|
cat qflipper_common.pri
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/bin
|
|
${lib.optionalString stdenv.isDarwin ''
|
|
cp qFlipper.app/Contents/MacOS/qFlipper $out/bin
|
|
''}
|
|
cp qFlipper-cli $out/bin
|
|
|
|
mkdir -p $out/etc/udev/rules.d
|
|
cp installer-assets/udev/42-flipperzero.rules $out/etc/udev/rules.d/
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "Cross-platform desktop tool to manage your flipper device";
|
|
homepage = "https://flipperzero.one/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ cab404 ];
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]; # qtbase doesn't build yet on aarch64-darwin
|
|
};
|
|
}
|