{cpm-cmake, gpredict, intel-undervolt, qgroundcontrol}: add nix-update-script (#424087)

This commit is contained in:
Fernando Rodrigues 2025-08-18 03:53:19 +00:00 committed by GitHub
commit 627fcea102
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,7 @@
lib,
stdenvNoCC,
fetchFromGitHub,
nix-update-script,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
@ -33,6 +34,8 @@ stdenvNoCC.mkDerivation (finalAttrs: {
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/cpm-cmake/CPM.cmake";
description = "CMake's missing package manager";

View File

@ -13,6 +13,7 @@
gpsd,
hamlib_4,
wrapGAppsHook3,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
@ -59,6 +60,8 @@ stdenv.mkDerivation (finalAttrs: {
hamlib_4
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Real time satellite tracking and orbit prediction";
mainProgram = "gpredict";

View File

@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
@ -24,6 +25,8 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Intel CPU undervolting and throttling configuration tool";
homepage = "https://github.com/kitsunyan/intel-undervolt";

View File

@ -7,6 +7,7 @@
gst_all_1,
wayland,
pkg-config,
nix-update-script,
}:
stdenv.mkDerivation rec {
@ -96,6 +97,8 @@ stdenv.mkDerivation rec {
./disable-bad-message.patch
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks";
homepage = "https://qgroundcontrol.com/";