Merge master into staging-next

This commit is contained in:
github-actions[bot] 2024-04-13 18:02:08 +00:00 committed by GitHub
commit 3b46a82c2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 22 deletions

View File

@ -114,6 +114,8 @@ let
version = ext.version; version = ext.version;
relativeLocation = ext.vscodeExtUniqueId;
location = { location = {
"$mid" = 1; "$mid" = 1;
fsPath = ext.outPath + "/share/vscode/extensions/${ext.vscodeExtUniqueId}"; fsPath = ext.outPath + "/share/vscode/extensions/${ext.vscodeExtUniqueId}";

View File

@ -2,7 +2,7 @@
(callPackage ./generic.nix { }) { (callPackage ./generic.nix { }) {
channel = "edge"; channel = "edge";
version = "24.3.5"; version = "24.4.2";
sha256 = "0sl4xxdsabma6q15fh0cqhgi5gmq3q2kzlw2wvcxhy78mm8qn8b0"; sha256 = "0apwhbcnghy7b9kwalbhcgvgcrwv6s55gzlgax55qaa5lxm6r6yz";
vendorHash = "sha256-Oe8NMpcLGHmmlt3ceQQHHt1aV0zrWUI/TmCpyOVElCg="; vendorHash = "sha256-bLTummNoDfGMYvtfSLxICgCFZEymPJcRWkQyWOSzKR8=";
} }

View File

@ -2,29 +2,16 @@
, lib , lib
, alsa-lib , alsa-lib
, autoPatchelfHook , autoPatchelfHook
, buildFHSEnv
, ciscoPacketTracer8
, copyDesktopItems , copyDesktopItems
, dbus , dbus
, dpkg , dpkg
, expat , expat
, fontconfig , fontconfig
, glib , glib
, libdrm
, libglvnd
, libpulseaudio
, libudev0-shim
, libxkbcommon
, libxml2
, libxslt
, lndir
, makeDesktopItem , makeDesktopItem
, makeWrapper , makeWrapper
, nspr
, nss
, qt5 , qt5
, requireFile , requireFile
, xorg
}: }:
let let
@ -40,14 +27,14 @@ let
}; };
in in
stdenvNoCC.mkDerivation rec { stdenvNoCC.mkDerivation (args: {
pname = "ciscoPacketTracer8"; pname = "ciscoPacketTracer8";
version = "8.2.2"; version = "8.2.2";
src = requireFile { src = requireFile {
name = names.${version}; name = names.${args.version};
hash = hashes.${version}; hash = hashes.${args.version};
url = "https://www.netacad.com"; url = "https://www.netacad.com";
}; };
@ -88,6 +75,7 @@ stdenvNoCC.mkDerivation rec {
makeWrapper "$out/opt/pt/bin/PacketTracer" "$out/bin/packettracer8" \ makeWrapper "$out/opt/pt/bin/PacketTracer" "$out/bin/packettracer8" \
"''${qtWrapperArgs[@]}" \ "''${qtWrapperArgs[@]}" \
--set QT_QPA_PLATFORMTHEME "" \
--prefix LD_LIBRARY_PATH : "$out/opt/pt/bin" --prefix LD_LIBRARY_PATH : "$out/opt/pt/bin"
install -D $out/opt/pt/art/app.png $out/share/icons/hicolor/128x128/apps/ciscoPacketTracer8.png install -D $out/opt/pt/art/app.png $out/share/icons/hicolor/128x128/apps/ciscoPacketTracer8.png
@ -122,4 +110,4 @@ stdenvNoCC.mkDerivation rec {
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
mainProgram = "packettracer8"; mainProgram = "packettracer8";
}; };
} })

View File

@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: {
- job control - job control
''; '';
license = lib.licenses.bsd2; license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ AndersonTorres ]; maintainers = with lib.maintainers; [ AndersonTorres suominen ];
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
}; };
}) })

View File

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
description = "BIRD Internet Routing Daemon"; description = "BIRD Internet Routing Daemon";
homepage = "http://bird.network.cz"; homepage = "http://bird.network.cz";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ herbetom ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }