Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 2c26c99d af60cd86

+12 -12
+1 -1
pkgs/applications/kde/klettres.nix
··· 3 3 mkDerivation { 4 4 pname = "klettres"; 5 5 meta = with lib; { 6 - homepage = "https://kde.org/applications/en/utilities/org.kde.klettres"; 6 + homepage = "https://invent.kde.org/education/klettres"; 7 7 description = "An application specially designed to help the user to learn an alphabet"; 8 8 maintainers = with maintainers; [ freezeboy ]; 9 9 license = licenses.gpl2Plus;
+1 -1
pkgs/applications/kde/kturtle.nix
··· 3 3 mkDerivation { 4 4 pname = "kturtle"; 5 5 meta = with lib; { 6 - homepage = "https://kde.org/applications/en/utilities/org.kde.kturtle"; 6 + homepage = "https://invent.kde.org/education/kturtle"; 7 7 description = "An educational programming environment for learning how to program"; 8 8 maintainers = with maintainers; [ freezeboy ]; 9 9 license = licenses.gpl2Plus;
+2 -2
pkgs/applications/virtualization/buildkit-nix/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "buildkit-nix"; 5 - version = "0.0.1"; 5 + version = "0.0.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AkihiroSuda"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Bdw7kYAZmRf1VOJ8y7JISQbAo0vLjWlo0j5x+VD9lSU="; 11 + sha256 = "sha256-k9YO4KFIDebfszhKG6RYDFlVfbUPFHRsHRQXXlJ6SoU="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-c+VHt2uTaEQIXsmJ9TA7X5lfMxGL9yKbbnnXn4drCLU=";
+1 -1
pkgs/development/embedded/fpga/icestorm/default.nix
··· 62 62 FPGAs and providing simple tools for analyzing and 63 63 creating bitstream files. 64 64 ''; 65 - homepage = "http://www.clifford.at/icestorm/"; 65 + homepage = "https://github.com/YosysHQ/icestorm/"; 66 66 license = lib.licenses.isc; 67 67 maintainers = with lib.maintainers; [ shell thoughtpolice emily ]; 68 68 platforms = lib.platforms.all;
+1 -1
pkgs/development/libraries/graphene/default.nix
··· 94 94 95 95 meta = with lib; { 96 96 description = "A thin layer of graphic data types"; 97 - homepage = "https://ebassi.github.com/graphene"; 97 + homepage = "https://github.com/ebassi/graphene"; 98 98 license = licenses.mit; 99 99 maintainers = teams.gnome.members ++ (with maintainers; [ ]); 100 100 platforms = platforms.unix;
+2 -2
pkgs/development/libraries/zlib-ng/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "zlib-ng"; 8 - version = "2.0.5"; 8 + version = "2.0.6"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "zlib-ng"; 12 12 repo = "zlib-ng"; 13 13 rev = version; 14 - sha256 = "sha256-KvV1XtPoagqPmijdr20eejsXWG7PRjMUwGPLXazqUHM="; 14 + sha256 = "sha256-8siO8NY+hIkYmumqglirh7HulRIyWSwsyGkAbHSFuhw="; 15 15 }; 16 16 17 17 outputs = [ "out" "dev" "bin" ];
+1 -1
pkgs/development/tools/ammonite/default.nix
··· 74 74 with a lot of ergonomic improvements and configurability 75 75 that may be familiar to people coming from IDEs or other REPLs such as IPython or Zsh. 76 76 ''; 77 - homepage = "https://www.lihaoyi.com/Ammonite/"; 77 + homepage = "https://github.com/com-lihaoyi/Ammonite"; 78 78 license = licenses.mit; 79 79 platforms = platforms.all; 80 80 maintainers = [ maintainers.nequissimus ];
+2 -2
pkgs/tools/networking/ipinfo/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ipinfo"; 8 - version = "2.1.1"; 8 + version = "2.7.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = "cli"; 13 13 rev = "${pname}-${version}"; 14 - sha256 = "15pwx94n4qi02r3ppqkpnkikpnbqmr8rrn9gmkbjy2vbdi147qwl"; 14 + sha256 = "sha256-5kXFSxdZrlaBX+7R9hlM+40+3KlJ7g8xu4BN2PyxXEc="; 15 15 }; 16 16 17 17 vendorSha256 = null;
+1 -1
pkgs/tools/security/ghidra/default.nix
··· 70 70 71 71 meta = with lib; { 72 72 description = "A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission"; 73 - homepage = "https://ghidra-sre.org/"; 73 + homepage = "https://github.com/NationalSecurityAgency/ghidra"; 74 74 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 75 75 license = licenses.asl20; 76 76 maintainers = with maintainers; [ ck3d govanify mic92 ];