···2222 > For instance, if you were filing a request against the out of date `hello` package, where the current version in Nixpkgs is 1.0.0, but the latest version upstream is 1.0.1, your title would be as follows:2323 > `Update Request: hello 1.0.0 → 1.0.1`24242525- > [!NOTE]2626- > If you are filing an update request to change a package's source to a fork, please file a new package request instead. Even if the original upstream is outdated, the fork should be considered a new package.2727-2825 ---2926 - type: "dropdown"3027 id: "version"···6972 attributes:7073 label: "Changelog"7174 description: "If applicable, please link the upstream changelog for the latest version."7575+ validations:7676+ required: false7777+ - type: "textarea"7878+ id: "additional-context"7979+ attributes:8080+ label: "Additional context"8181+ description: "Add any other context about the update here."7282 validations:7383 required: false7484 - type: "textarea"
···11---- a/Cargo.lock22-+++ b/Cargo.lock33-@@ -1,5 +1,7 @@44- # This file is automatically @generated by Cargo.55- # It is not intended for manual editing.66-+version = 377-+88- [[package]]99- name = "adler32"1010- version = "1.2.0"1111-@@ -530,13 +532,13 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"1212-1313- [[package]]1414- name = "lexical-core"1515--version = "0.7.4"1616-+version = "0.7.6"1717- source = "registry+https://github.com/rust-lang/crates.io-index"1818--checksum = "db65c6da02e61f55dae90a0ae427b2a5f6b3e8db09f58d10efab23af92592616"1919-+checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"2020- dependencies = [2121- "arrayvec",2222- "bitflags 1.2.1",2323-- "cfg-if 0.1.10",2424-+ "cfg-if 1.0.0",2525- "ryu",2626- "static_assertions",2727- ]
-59
pkgs/by-name/su/supertag/package.nix
···11-{22- lib,33- rustPlatform,44- fetchFromGitHub,55- pkg-config,66- dbus,77- fuse,88- sqlite,99-}:1010-1111-rustPlatform.buildRustPackage rec {1212- pname = "supertag";1313- version = "0.1.4";1414-1515- src = fetchFromGitHub {1616- owner = "amoffat";1717- repo = "supertag";1818- rev = "v${version}";1919- sha256 = "0jzm7pn38hlr96n0z8gqfsfdbw48y0nnbsgjdq7hpgwmcgvgqdam";2020- };2121-2222- # lexical-core is outdated and incompatible with newer versions of rust2323- # patches Cargo.lock to include a more up-to-date version of lexical-core2424- cargoPatches = [ ./cargo-lock-update-lexical-core.patch ];2525-2626- useFetchCargoVendor = true;2727- cargoHash = "sha256-i+v2PK07GHmTaLT0Bcpitd1g3Mrol28S2a2lBwBETb8=";2828-2929- nativeBuildInputs = [3030- rustPlatform.bindgenHook3131- pkg-config3232- ];3333- buildInputs = [3434- dbus3535- fuse3636- sqlite3737- ];3838-3939- # The test are requiring extended permissions.4040- doCheck = false;4141-4242- meta = with lib; {4343- description = "Tag-based filesystem";4444- longDescription = ''4545- Supertag is a tag-based filesystem, written in Rust, for Linux and MacOS.4646- It provides a tag-based view of your files by removing the hierarchy4747- constraints typically imposed on files and folders. In other words, it4848- allows you to think about your files not as objects stored in folders, but4949- as objects that can be filtered by folders.5050- '';5151- homepage = "https://github.com/amoffat/supertag";5252- license = licenses.agpl3Plus;5353- platforms = [5454- "i686-linux"5555- "x86_64-linux"5656- ];5757- maintainers = with maintainers; [ oxzi ];5858- };5959-}
···66 pipInstallHook,77 blessed,88 docutils,99- libcxx,109 llvm,1110 pytestCheckHook,1211 typesentry,···5253 ];53545455 LLVM = llvm;5555- env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-isystem ${lib.getDev libcxx}/include/c++/v1";5656+ env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-isystem ${lib.getInclude stdenv.cc.libcxx}/include/c++/v1";56575758 # test suite is very cpu intensive, only run small subset to ensure package is working as expected5859 pytestFlagsArray = [ "tests/test-sets.py" ];
···2828 writeScript,2929 # Apple dependencies3030 cctools,3131- libcxx,3231 sigtool,3332 # Allow to independently override the jdks used to build and run respectively3433 buildJdk,···450451451452 # libcxx includes aren't added by libcxx hook452453 # https://github.com/NixOS/nixpkgs/pull/41589453453- export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem ${lib.getDev libcxx}/include/c++/v1"454454+ export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem ${lib.getInclude stdenv.cc.libcxx}/include/c++/v1"454455 # for CLang 16 compatibility in external/{absl,upb} dependencies and in execlog455456 export NIX_CFLAGS_COMPILE+=" -Wno-deprecated-builtins -Wno-gnu-offsetof-extensions -Wno-implicit-function-declaration"456457···621622 ]622623 ++ lib.optionals (stdenv.hostPlatform.isDarwin) [623624 cctools624624- libcxx625625 ];626626627627 # Bazel makes extensive use of symlinks in the WORKSPACE.
···3434 python3,3535 # Apple dependencies3636 cctools,3737- libcxx,3837 libtool,3938 sigtool,4039 # Allow to independently override the jdks used to build and run respectively···405406406407 # libcxx includes aren't added by libcxx hook407408 # https://github.com/NixOS/nixpkgs/pull/41589408408- export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem ${lib.getDev libcxx}/include/c++/v1"409409+ export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -isystem ${lib.getInclude stdenv.cc.libcxx}/include/c++/v1"409410 # for CLang 16 compatibility in external/upb dependency410411 export NIX_CFLAGS_COMPILE+=" -Wno-gnu-offsetof-extensions"411412···553554 ]554555 ++ lib.optionals (stdenv.hostPlatform.isDarwin) [555556 cctools556556- libcxx557557 ];558558559559 # Bazel makes extensive use of symlinks in the WORKSPACE.
···12121313stdenv.mkDerivation rec {1414 pname = "vulkan-caps-viewer";1515- version = "4.00";1515+ version = "4.01";16161717 src = fetchFromGitHub {1818 owner = "SaschaWillems";1919 repo = "VulkanCapsViewer";2020 rev = version;2121- hash = "sha256-fliiNeZPEP4uNMRDgG093fvU01ZTxwv08YLGwBooOLA=";2121+ hash = "sha256-A3JM5rqrXk4Qi2SIdA9GP0Knh/bwI8BXaotPQPQi8yo=";2222 # Note: this derivation strictly requires vulkan-header to be the same it was developed against.2323 # To help us, they've put it in a git-submodule.2424 # The result will work with any vulkan-loader version.
···690690 gdome2 = throw "'gdome2' has been removed from nixpkgs, as it is umaintained and obsolete"; # Added 2024-12-29691691 geocode-glib = "throw 'geocode-glib' has been removed, as it was unused and used outdated libraries"; # Added 2025-04-16692692 geos_3_11 = throw "geos_3_11 has been removed from nixpgks. Please use a more recent 'geos' instead.";693693+ gfbgraph = throw "'gfbgraph' has been removed as it was archived upstream and unused in nixpkgs"; # Added 2025-04-20693694 gfortran48 = throw "'gfortran48' has been removed from nixpkgs"; # Added 2024-09-10694695 gfortran49 = throw "'gfortran49' has been removed from nixpkgs"; # Added 2024-09-11695696 gfortran7 = throw "gfortran7 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-11-20···16751674 strelka = throw "strelka depends on Python 2.6+, and does not support Python 3."; # Added 2025-03-1716761675 sumneko-lua-language-server = lua-language-server; # Added 2023-02-0716771676 sumokoin = throw "sumokoin has been removed as it was abandoned upstream"; # Added 2024-11-2316771677+ supertag = throw "supertag has been removed as it was abandoned upstream and fails to build"; # Added 2025-04-2016781678 swiProlog = lib.warnOnInstantiate "swiProlog has been renamed to swi-prolog" swi-prolog; # Added 2024-09-0716791679 swiPrologWithGui = lib.warnOnInstantiate "swiPrologWithGui has been renamed to swi-prolog-gui" swi-prolog-gui; # Added 2024-09-0716801680 swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23···17151713 teamspeak_client = teamspeak3; # Added 2024-11-0717161714 teamspeak5_client = teamspeak6-client; # Added 2025-01-2917171715 teck-programmer = throw "teck-programmer was removed because it was broken and unmaintained"; # added 2024-08-2317161716+ telepathy-gabble = throw "'telepathy-gabble' has been removed as it was unmaintained, unused, broken and used outdated libraries"; # Added 2025-04-2017171717+ telepathy-logger = throw "'telepathy-logger' has been removed as it was unmaintained, unused and broken"; # Added 2025-04-2017181718 teleport_13 = throw "teleport 13 has been removed as it is EOL. Please upgrade to Teleport 14 or later"; # Added 2024-05-2617191719 teleport_14 = throw "teleport 14 has been removed as it is EOL. Please upgrade to Teleport 15 or later"; # Added 2024-10-1817201720 teleport_15 = throw "teleport 15 has been removed as it is EOL. Please upgrade to Teleport 16 or later"; # Added 2025-03-28