mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 22:33:08 +00:00
6e465f4550
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;` This caused some packages to be listed twice. Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`). Remove inclusions of `bash`, since `bashInteractive` is already present by default.
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ appimageTools, lib, fetchurl, nix-update-script, stdenv }:
|
|
let
|
|
|
|
pname = "golden-cheetah";
|
|
version = "3.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/GoldenCheetah/GoldenCheetah/releases/download/v${version}/GoldenCheetah_v${version}_x64.AppImage";
|
|
hash = "sha256-PMRUDQSQxbECbF9SPOo03t4Xxj1OtYJAPXEMyyy6EVY=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extract { inherit pname src version; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname src version;
|
|
|
|
extraPkgs = pkgs: [ pkgs.R pkgs.zlib pkgs.libusb-compat-0_1 ];
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/${pname} $out/bin/GoldenCheetah
|
|
mkdir -p $out/share/applications
|
|
mkdir -p $out/share/pixmaps
|
|
cp ${appimageContents}/GoldenCheetah.desktop $out/share/applications/
|
|
cp ${appimageContents}/gc.png $out/share/pixmaps/
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Performance software for cyclists, runners and triathletes. This version includes the API Tokens for e.g. Strava";
|
|
platforms = lib.platforms.linux;
|
|
broken = !stdenv.isx86_64;
|
|
maintainers = with lib.maintainers; [ gador adamcstephens ];
|
|
license = lib.licenses.gpl2Plus;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
knownVulnerabilities = [ "Vendors libwebp vulnerable to CVE-2023-4863" ];
|
|
};
|
|
}
|