···7373 "meta": {
7474 "isOpenSource": true,
7575 "description": "Free Java, Kotlin, Groovy and Scala IDE from jetbrains",
7676- "maintainers": [ "edwtjo", "gytis-ivaskevicius", "steinybot", "AnatolyPopov", "tymscar" ],
7676+ "maintainers": [ "edwtjo", "gytis-ivaskevicius", "steinybot", "tymscar" ],
7777 "longDescription": "IDE for Java SE, Groovy & Scala development Powerful environment for building Google Android apps Integration with JUnit, TestNG, popular SCMs, Ant & Maven. Also known as IntelliJ.",
7878 "homepage": "https://www.jetbrains.com/idea/"
7979 }
···8585 "meta": {
8686 "isOpenSource": false,
8787 "description": "Paid-for Java, Kotlin, Groovy and Scala IDE from jetbrains",
8888- "maintainers": [ "edwtjo", "gytis-ivaskevicius", "steinybot", "AnatolyPopov", "tymscar" ],
8888+ "maintainers": [ "edwtjo", "gytis-ivaskevicius", "steinybot", "tymscar" ],
8989 "longDescription": "IDE for Java SE, Groovy & Scala development Powerful environment for building Google Android apps Integration with JUnit, TestNG, popular SCMs, Ant & Maven. Also known as IntelliJ.",
9090 "homepage": "https://www.jetbrains.com/idea/"
9191 }
···1616 libsForQt5,
1717 testers,
18181919- enableGui ? true,
1919+ enableGui ? false,
2020}:
21212222stdenv.mkDerivation (finalAttrs: {
···6363 mainProgram = "lgogdownloader";
6464 homepage = "https://github.com/Sude-/lgogdownloader";
6565 license = lib.licenses.wtfpl;
6666+ # qtbase requires a sandbox profile with read access to /usr/share/icu.
6767+ # To prevent build failures in CI, we disable Darwin support when the GUI is enabled.
6868+ platforms = lib.platforms.linux ++ lib.optionals (!enableGui) lib.platforms.darwin;
6669 maintainers = with lib.maintainers; [ _0x4A6F ];
6767- platforms = lib.platforms.linux;
6870 };
6971})
+14-8
pkgs/by-name/li/libdigidocpp/package.nix
···11{
22 lib,
33 stdenv,
44- fetchurl,
44+ fetchFromGitHub,
55 cmake,
66 libtool,
77 libxml2,
···1919 version = "4.2.0";
2020 pname = "libdigidocpp";
21212222- src = fetchurl {
2323- url = "https://github.com/open-eid/libdigidocpp/releases/download/v${version}/libdigidocpp-${version}.tar.gz";
2424- hash = "sha256-d3AqTTVi3lzzu9Tw7p+KilNa0Q7cJBGwb6VoNNLeskE=";
2222+ src = fetchFromGitHub {
2323+ owner = "open-eid";
2424+ repo = "libdigidocpp";
2525+ tag = "v${version}";
2626+ hash = "sha256-o/2hF82uRaBDp7I9urn8R6r9YQMkp241M1v92qD66NM=";
2527 };
26282729 nativeBuildInputs = [
···4749 "bin"
4850 ];
49515252+ cmakeFlags = [
5353+ (lib.cmakeFeature "PKCS11_MODULE" "${lib.getLib opensc}/lib/opensc-pkcs11.so")
5454+ ];
5555+5056 # This wants to link to ${CMAKE_DL_LIBS} (ltdl), and there doesn't seem to be
5157 # a way to tell CMake where this should be pulled from.
5258 # A cleaner fix would probably be to patch cmake to use
5359 # `-L${libtool.lib}/lib -ltdl` for `CMAKE_DL_LIBS`, but that's a world rebuild.
5460 env.NIX_LDFLAGS = "-L${libtool.lib}/lib";
55615656- # libdigidocpp.so's `PKCS11Signer::PKCS11Signer()` dlopen()s "opensc-pkcs11.so"
5757- # itself, so add OpenSC to its DT_RUNPATH after the fixupPhase shrinked it.
5858- # https://github.com/open-eid/cmake/pull/35 might be an alternative.
6262+ # Prevent cmake from creating a file that sets INTERFACE_INCLUDE_DIRECTORIES to the wrong location,
6363+ # causing downstream build failures.
5964 postFixup = ''
6060- patchelf --add-rpath ${opensc}/lib/pkcs11 $lib/lib/libdigidocpp.so
6565+ sed '/^ INTERFACE_INCLUDE_DIRECTORIES/s|"[^"]*/include"|"${placeholder "dev"}/include"|' \
6666+ -i "$dev"/lib/cmake/libdigidocpp/libdigidocpp-config.cmake
6167 '';
62686369 meta = with lib; {
···6464 # there’s a lot of escaping, but I’m not sure how to improve that
6565 cat > $out/bin/liquibase <<EOF
6666 #!/usr/bin/env bash
6767+ export LIQUIBASE_ANALYTICS_ENABLED="\''${LIQUIBASE_ANALYTICS_ENABLED:-false}"
6768 # taken from the executable script in the source
6869 CP=""
6970 ${addJars "$out/internal/lib"}
···55}:
66rustPlatform.buildRustPackage rec {
77 pname = "xan";
88- version = "0.51.0";
88+ version = "0.52.0";
991010 src = fetchFromGitHub {
1111 owner = "medialab";
1212 repo = "xan";
1313 tag = version;
1414- hash = "sha256-wfA8yyIFzwYkd/nuSOFv6Z7aDhBZiYzs2E/Pxouqicw=";
1414+ hash = "sha256-Enjtp/35rhSsndLFaQw8sGsO43mOes3Se8ElbdcSv0E=";
1515 };
16161717- cargoHash = "sha256-8FJTiZuLRvHdDAYf3M0tWfT7BtCVuBlnIzmUMgBo8aA=";
1717+ cargoHash = "sha256-m3aiX34W6GHgnT6kkb1CsLXyVH5FnxSOh5etCCJJsAs=";
18181919 # FIXME: tests fail and I do not have the time to investigate. Temporarily disable
2020 # tests so that we can manually run and test the package for packaging purposes.
···2828 description = "This is a factored out version of unparse found in the Python source distribution";
2929 homepage = "https://github.com/simonpercivall/astunparse";
3030 license = licenses.bsd3;
3131- maintainers = with maintainers; [ jyp ];
3231 };
3332}
···6060 # Not to be used with buildPgrxExtension, where it should be pinned.
6161 # When you make an extension use the latest version, *copy* this to a separate pinned attribute.
6262 cargo-pgrx = generic {
6363- version = "0.15.0";
6464- hash = "sha256-sksRfNV6l8YbdI6fzrEtanpDVV4sh14JXLqYBydHwy0=";
6565- cargoHash = "sha256-c+n1bJMO9254kT4e6exVNhlIouzkkzrRIOVzR9lZeg4=";
6363+ version = "0.16.0";
6464+ hash = "sha256-emNR7fXNVD9sY/Mdno7mwpH6l/7AD28cBUsFRn9je50=";
6565+ cargoHash = "sha256-3eyBDWDoCzSU0tbab8qbjSnBkkN0oOgd7YbuyHLEHYw=";
6666 };
6767}
6868// lib.mapAttrs (_: generic) (import ./pinned.nix)
···1414 }:
1515 buildGoModule rec {
1616 inherit pname;
1717- version = "1.3.10";
1717+ version = "1.4.0";
18181919 src = fetchFromGitHub {
2020 owner = "sigstore";
2121 repo = "rekor";
2222 rev = "v${version}";
2323- hash = "sha256-fxBLh7QrBBkUsVrONeFmrXtmRGNgkH7WnncMQ+E56Ok=";
2323+ hash = "sha256-uGPjeBnai1QP/U9uu4wVMUVjd8Nx1sl4r83xrOdEoF0=";
2424 # populate values that require us to use git. By doing this in postFetch we
2525 # can delete .git afterwards and maintain better reproducibility of the src.
2626 leaveDotGit = true;
···3333 '';
3434 };
35353636- vendorHash = "sha256-2ddpzKzVlmOgxsBtLB28fKZ2o4QvtrNZC+1wOny3Amk=";
3636+ vendorHash = "sha256-lHaRabQzeh69GXQc3Spe1mLi7zyGSjhICH3ZENMJUfI=";
37373838 nativeBuildInputs = [ installShellFiles ];
3939
+1
pkgs/top-level/aliases.nix
···17881788 rustic-rs = rustic; # Added 2024-08-02
17891789 rxvt_unicode = throw "'rxvt_unicode' has been renamed to/replaced by 'rxvt-unicode-unwrapped'"; # Converted to throw 2024-10-17
17901790 rxvt_unicode-with-plugins = throw "'rxvt_unicode-with-plugins' has been renamed to/replaced by 'rxvt-unicode'"; # Converted to throw 2024-10-17
17911791+ ryujinx = throw "'ryujinx' has been replaced by 'ryubing' as the new upstream"; # Added 2025-07-30
17911792 ryujinx-greemdev = ryubing; # Added 2025-01-20
1792179317931794 # The alias for linuxPackages*.rtlwifi_new is defined in ./all-packages.nix,