Merge branch 'staging-next' into staging

+937 -889
-2
.github/workflows/periodic-merge-24h.yml
··· 33 33 max-parallel: 1 34 34 matrix: 35 35 pairs: 36 - - from: master 37 - into: haskell-updates 38 36 - from: release-24.11 39 37 into: staging-next-24.11 40 38 - from: staging-next-24.11
+59
.github/workflows/periodic-merge-haskell-updates.yml
··· 1 + # This action periodically merges a merge base of master and staging into haskell-updates. 2 + # 3 + # haskell-updates is based on master (so there are little unrelated failures and the cache 4 + # is already prepopulated), but needs to target staging due to the high amount of rebuilds 5 + # it typically causes. To prevent unrelated commits clattering the GitHub UI, we need to 6 + # take care to only merge the merge-base of master and staging into haskell-updates. 7 + # 8 + # See also https://github.com/NixOS/nixpkgs/issues/361143. 9 + 10 + name: "Periodic Merges (haskell-updates)" 11 + 12 + 13 + on: 14 + schedule: 15 + # * is a special character in YAML so you have to quote this string 16 + # Merge every 24 hours 17 + - cron: '0 0 * * *' 18 + workflow_dispatch: 19 + 20 + permissions: 21 + contents: read 22 + 23 + jobs: 24 + periodic-merge: 25 + permissions: 26 + contents: write # for devmasx/merge-branch to merge branches 27 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 28 + if: github.repository_owner == 'NixOS' 29 + runs-on: ubuntu-latest 30 + name: git merge-base master staging → haskell-updates 31 + steps: 32 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 33 + with: 34 + fetch-depth: 0 35 + 36 + # Note: If we want to do something similar for more branches, we can move this into a 37 + # separate job, so we can use the matrix strategy again. 38 + - name: Find merge base of master and staging 39 + id: find_merge_base_step 40 + run: | 41 + merge_base="$(git merge-base refs/remotes/origin/master refs/remotes/origin/staging)" 42 + echo "Found merge base: $merge_base" >&2 43 + echo "merge_base=$merge_base" >> "$GITHUB_OUTPUT" 44 + 45 + - name: git merge-base master staging → haskell-updates 46 + uses: devmasx/merge-branch@854d3ac71ed1e9deb668e0074781b81fdd6e771f # 1.4.0 47 + with: 48 + type: now 49 + head_to_merge: ${{ steps.find_merge_base_step.outputs.merge_base }} 50 + target_branch: haskell-updates 51 + github_token: ${{ secrets.GITHUB_TOKEN }} 52 + 53 + - name: Comment on failure 54 + uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 55 + if: ${{ failure() }} 56 + with: 57 + issue-number: 367709 58 + body: | 59 + Periodic merge from `${{ steps.find_merge_base_step.outputs.merge_base }}` into `haskell-updates` has [failed](https://github.com/NixOS/nixpkgs/actions/runs/${{ github.run_id }}).
+49
maintainers/maintainer-list.nix
··· 5892 5892 githubId = 283316; 5893 5893 name = "Dane Lipscombe"; 5894 5894 }; 5895 + dlurak = { 5896 + github = "dlurak"; 5897 + githubId = 84224239; 5898 + name = "dlurak"; 5899 + }; 5895 5900 dmadisetti = { 5896 5901 email = "nix@madisetti.me"; 5897 5902 github = "dmadisetti"; ··· 9224 9229 githubId = 287215; 9225 9230 keys = [ { fingerprint = "D618 7A03 A40A 3D56 62F5 4B46 03EF BF83 9A5F DC15"; } ]; 9226 9231 }; 9232 + hlad = { 9233 + email = "hlad+nix@hlad.org"; 9234 + name = "Marek Hladky"; 9235 + matrix = "@hlad:hlad.org"; 9236 + github = "hlad"; 9237 + githubId = 6285728; 9238 + }; 9227 9239 hleboulanger = { 9228 9240 email = "hleboulanger@protonmail.com"; 9229 9241 name = "Harold Leboulanger"; ··· 12517 12529 githubId = 168301; 12518 12530 name = "Victor Engmark"; 12519 12531 }; 12532 + l1npengtul = { 12533 + email = "l1npengtul@l1npengtul.lol"; 12534 + github = "l1npengtul"; 12535 + githubId = 35755164; 12536 + name = "l1npengtul"; 12537 + }; 12520 12538 l33tname = { 12521 12539 name = "l33tname"; 12522 12540 email = "hi@l33t.name"; ··· 13738 13756 githubId = 24735185; 13739 13757 name = "Mahmoud Ayman"; 13740 13758 }; 13759 + mahtaran = { 13760 + email = "luka.leer@gmail.com"; 13761 + github = "mahtaran"; 13762 + githubId = 22727323; 13763 + name = "Luka Leer"; 13764 + keys = [ 13765 + { 13766 + fingerprint = "C7FF B72E 0527 423A D470 E132 AA82 C4EB CB16 82E0"; 13767 + } 13768 + ]; 13769 + }; 13741 13770 majesticmullet = { 13742 13771 email = "hoccthomas@gmail.com.au"; 13743 13772 github = "MajesticMullet"; ··· 15306 15335 githubId = 44561540; 15307 15336 name = "Synth Morxemplum"; 15308 15337 }; 15338 + MostafaKhaled = { 15339 + email = "mostafa.khaled.5422@gmail.com"; 15340 + github = "mostafa-khaled775"; 15341 + githubId = 112074172; 15342 + name = "Mostafa Khaled"; 15343 + }; 15309 15344 MostAwesomeDude = { 15310 15345 email = "cds@corbinsimpson.com"; 15311 15346 github = "MostAwesomeDude"; ··· 16577 16612 github = "NukaDuka"; 16578 16613 githubId = 22592293; 16579 16614 name = "Kartik Gokte"; 16615 + }; 16616 + nullcube = { 16617 + email = "nullcub3@gmail.com"; 16618 + name = "NullCube"; 16619 + github = "nullcub3"; 16620 + githubId = 51034487; 16621 + matrix = "@nullcube:matrix.org"; 16580 16622 }; 16581 16623 nullishamy = { 16582 16624 email = "spam@amyerskine.me"; ··· 21769 21811 github = "stevenroose"; 21770 21812 githubId = 853468; 21771 21813 name = "Steven Roose"; 21814 + }; 21815 + stevestreza = { 21816 + email = "nixpkgs@stevestreza.com"; 21817 + github = "stevestreza"; 21818 + githubId = 28552; 21819 + name = "Steve Streza"; 21820 + keys = [ { fingerprint = "DFED 4E42 34E7 348C 57D4 6568 C4DC 30F8 5ABC 6FA1"; } ]; 21772 21821 }; 21773 21822 stianlagstad = { 21774 21823 email = "stianlagstad@gmail.com";
+1 -1
nixos/modules/services/web-apps/galene.nix
··· 152 152 WorkingDirectory = cfg.stateDir; 153 153 ExecStart = ''${cfg.package}/bin/galene \ 154 154 ${optionalString (cfg.insecure) "-insecure"} \ 155 - -http ${cfg.httpAddress}:${cfg.httpPort} \ 155 + -http ${cfg.httpAddress}:${toString cfg.httpPort} \ 156 156 -turn ${cfg.turnAddress} \ 157 157 -data ${cfg.dataDir} \ 158 158 -groups ${cfg.groupsDir} \
-4
pkgs/applications/audio/musescore/default.nix
··· 32 32 qtnetworkauth, 33 33 qttools, 34 34 nixosTests, 35 - apple-sdk_11, 36 35 }: 37 36 38 37 stdenv.mkDerivation (finalAttrs: { ··· 127 126 ++ lib.optionals stdenv.hostPlatform.isLinux [ 128 127 alsa-lib 129 128 qtwayland 130 - ] 131 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 132 - apple-sdk_11 133 129 ]; 134 130 135 131 postInstall =
-2
pkgs/applications/editors/lapce/default.nix
··· 19 19 wayland, 20 20 gobject-introspection, 21 21 xorg, 22 - apple-sdk_11, 23 22 }: 24 23 let 25 24 rpathLibs = lib.optionals stdenv.hostPlatform.isLinux [ ··· 94 93 ] 95 94 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 96 95 libobjc 97 - apple-sdk_11 98 96 ]; 99 97 100 98 postInstall =
+1 -3
pkgs/applications/emulators/86box/default.nix
··· 1 1 { 2 2 stdenv, 3 - apple-sdk_11, 4 3 lib, 5 4 fetchFromGitHub, 6 5 cmake, ··· 90 89 ] 91 90 ++ lib.optional stdenv.hostPlatform.isLinux alsa-lib 92 91 ++ lib.optional enableWayland wayland 93 - ++ lib.optional enableVncRenderer libvncserver 94 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 92 + ++ lib.optional enableVncRenderer libvncserver; 95 93 96 94 cmakeFlags = 97 95 lib.optional stdenv.hostPlatform.isDarwin "-DCMAKE_MACOSX_BUNDLE=OFF"
+2 -2
pkgs/applications/emulators/mame/default.nix
··· 39 39 in 40 40 stdenv.mkDerivation rec { 41 41 pname = "mame"; 42 - version = "0.272"; 42 + version = "0.273"; 43 43 srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; 44 44 45 45 src = fetchFromGitHub { 46 46 owner = "mamedev"; 47 47 repo = "mame"; 48 48 rev = "mame${srcVersion}"; 49 - hash = "sha256-qD9xWP4KtPJWqje9QVb5wozgLTc+hE84kkEFM6Re+Sk="; 49 + hash = "sha256-aOBYnkdcFKDkw/KFiv0IRgpOChn8NRKD2xmbfExYGKY="; 50 50 }; 51 51 52 52 outputs = [
+2 -2
pkgs/applications/misc/bitwarden-menu/default.nix
··· 8 8 9 9 buildPythonApplication rec { 10 10 pname = "bitwarden-menu"; 11 - version = "0.4.3"; 11 + version = "0.4.5"; 12 12 pyproject = true; 13 13 14 14 src = fetchPypi { 15 15 pname = "bitwarden_menu"; 16 16 inherit version; 17 - hash = "sha256-tuIolWvQ/vKSJr6oUTL7ZLPgdkYsIZods5yQNNfWbWY="; 17 + hash = "sha256-vUlNqSVdGhfN5WjDjf1ub32Y2WoBndIdFzfCNwo5+Vg="; 18 18 }; 19 19 20 20 nativeBuildInputs = with python3Packages; [
-8
pkgs/applications/misc/xmrig/default.nix pkgs/by-name/xm/xmrig/package.nix
··· 7 7 , openssl 8 8 , hwloc 9 9 , donateLevel ? 0 10 - , darwin 11 10 }: 12 11 13 - let 14 - inherit (darwin.apple_sdk_11_0.frameworks) Carbon CoreServices OpenCL; 15 - in 16 12 stdenv.mkDerivation rec { 17 13 pname = "xmrig"; 18 14 version = "6.22.2"; ··· 43 39 libmicrohttpd 44 40 openssl 45 41 hwloc 46 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 47 - Carbon 48 - CoreServices 49 - OpenCL 50 42 ]; 51 43 52 44 inherit donateLevel;
pkgs/applications/misc/xmrig/donate-level.patch pkgs/by-name/xm/xmrig/donate-level.patch
pkgs/applications/misc/xmrig/moneroocean.nix pkgs/by-name/xm/xmrig-mo/package.nix
+5 -14
pkgs/applications/misc/xmrig/proxy.nix pkgs/by-name/xm/xmrig-proxy/package.nix
··· 6 6 libuv, 7 7 libmicrohttpd, 8 8 openssl, 9 - darwin, 10 9 }: 11 10 12 - let 13 - inherit (darwin.apple_sdk_11_0.frameworks) CoreServices IOKit; 14 - in 15 11 stdenv.mkDerivation rec { 16 12 pname = "xmrig-proxy"; 17 13 version = "6.22.0"; ··· 35 31 cmake 36 32 ]; 37 33 38 - buildInputs = 39 - [ 40 - libuv 41 - libmicrohttpd 42 - openssl 43 - ] 44 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 45 - CoreServices 46 - IOKit 47 - ]; 34 + buildInputs = [ 35 + libuv 36 + libmicrohttpd 37 + openssl 38 + ]; 48 39 49 40 installPhase = '' 50 41 runHook preInstall
+2 -2
pkgs/applications/networking/p2p/gnunet/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "gnunet"; 10 - version = "0.22.1"; 10 + version = "0.23.1"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://gnu/gnunet/gnunet-${version}.tar.gz"; 14 - hash = "sha256-gWsgufvA4tLWosnpAYPdAIs4yJOWfjYj4E11/Ezgr6o="; 14 + hash = "sha256-b9BbaQdrOxqOfiCyVOBE/dTG2lMTGWMX894Ij30CXPI="; 15 15 }; 16 16 17 17 enableParallelBuilding = true;
+2 -2
pkgs/applications/networking/p2p/gnunet/gtk.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "gnunet-gtk"; 18 - version = "0.22.0"; 18 + version = "0.23.1"; 19 19 20 20 src = fetchurl { 21 21 url = "mirror://gnu/gnunet/gnunet-gtk-${version}.tar.gz"; 22 - hash = "sha256-bpSEdymFT7q5OQKshD8lGwwMF26yXp0RyUAvNVzua6U="; 22 + hash = "sha256-bmU3799pZVUyrsJ92MKgn5NIqCW76ml4N42Ewi+VWvI="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -3
pkgs/applications/networking/sync/lsyncd/default.nix
··· 11 11 docbook_xml_dtd_45, 12 12 docbook_xsl, 13 13 libxslt, 14 - apple-sdk_11, 14 + apple-sdk, 15 15 }: 16 16 17 17 let 18 - xnu = apple-sdk_11.sourceRelease "xnu"; 18 + xnu = apple-sdk.sourceRelease "xnu"; 19 19 in 20 20 stdenv.mkDerivation rec { 21 21 pname = "lsyncd"; ··· 55 55 docbook_xml_dtd_45 56 56 docbook_xsl 57 57 libxslt 58 - ] ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 58 + ]; 59 59 60 60 meta = with lib; { 61 61 homepage = "https://github.com/axkibe/lsyncd";
-95
pkgs/applications/office/cutemarked-ng/0001-remove-dependency-on-vendored-library.patch
··· 1 - From b9bf46966dd7931f9f33c30ed608a21d0e71e923 Mon Sep 17 00:00:00 2001 2 - From: rewine <lhongxu@outlook.com> 3 - Date: Tue, 19 Jul 2022 13:19:10 +0800 4 - Subject: [PATCH 1/2] remove dependency on vendored library 5 - 6 - --- 7 - CuteMarkEd.pro | 4 +--- 8 - app-static/app-static.pro | 11 ++--------- 9 - app/app.pro | 2 -- 10 - app/cutemarkdownhighlighter.h | 2 +- 11 - 4 files changed, 4 insertions(+), 15 deletions(-) 12 - 13 - diff --git a/CuteMarkEd.pro b/CuteMarkEd.pro 14 - index 4ee92e3..0d247a4 100644 15 - --- a/CuteMarkEd.pro 16 - +++ b/CuteMarkEd.pro 17 - @@ -9,12 +9,10 @@ TEMPLATE = subdirs 18 - CONFIG += c++14 19 - 20 - SUBDIRS = \ 21 - - 3rdparty \ 22 - libs \ 23 - app-static \ 24 - app \ 25 - - fontawesomeicon \ 26 - - test 27 - + fontawesomeicon 28 - 29 - # build order: 3rdparty -> libs -> app-static -> app & test 30 - #libs.depends = 3rdparty 31 - diff --git a/app-static/app-static.pro b/app-static/app-static.pro 32 - index cd3c292..560b4fc 100644 33 - --- a/app-static/app-static.pro 34 - +++ b/app-static/app-static.pro 35 - @@ -13,7 +13,6 @@ CONFIG += c++11 36 - 37 - INCLUDEPATH += $$PWD 38 - # MD4C library 39 - -INCLUDEPATH += $$PWD/../3rdparty/md4c/src 40 - 41 - SOURCES += \ 42 - snippets/jsonsnippettranslator.cpp \ 43 - @@ -34,10 +33,7 @@ SOURCES += \ 44 - revealviewsynchronizer.cpp \ 45 - htmlpreviewcontroller.cpp \ 46 - htmlviewsynchronizer.cpp \ 47 - - yamlheaderchecker.cpp \ 48 - - $$PWD/../3rdparty/md4c/src/md4c.c \ 49 - - $$PWD/../3rdparty/md4c/src/entity.c \ 50 - - $$PWD/../3rdparty/md4c/src/md4c-html.c 51 - + yamlheaderchecker.cpp 52 - 53 - HEADERS += \ 54 - snippets/snippet.h \ 55 - @@ -64,10 +60,7 @@ HEADERS += \ 56 - revealviewsynchronizer.h \ 57 - htmlpreviewcontroller.h \ 58 - htmlviewsynchronizer.h \ 59 - - yamlheaderchecker.h \ 60 - - $$PWD/../3rdparty/md4c/src/md4c.h \ 61 - - $$PWD/../3rdparty/md4c/src/entity.h \ 62 - - $$PWD/../3rdparty/md4c/src/md4c-html.h 63 - + yamlheaderchecker.h 64 - 65 - 66 - #unix:!symbian { 67 - diff --git a/app/app.pro b/app/app.pro 68 - index 4827673..ab961cf 100644 69 - --- a/app/app.pro 70 - +++ b/app/app.pro 71 - @@ -40,8 +40,6 @@ macx { 72 - } 73 - 74 - #qmarkdowntextedit 75 - -include(../3rdparty/qmarkdowntextedit/qmarkdowntextedit.pri) 76 - -include(../3rdparty/hunspell/hunspell.pri) 77 - INCLUDEPATH += $$PWD 78 - 79 - SOURCES += \ 80 - diff --git a/app/cutemarkdownhighlighter.h b/app/cutemarkdownhighlighter.h 81 - index c99ab56..78f2be6 100644 82 - --- a/app/cutemarkdownhighlighter.h 83 - +++ b/app/cutemarkdownhighlighter.h 84 - @@ -19,7 +19,7 @@ 85 - 86 - #include <QSyntaxHighlighter> 87 - 88 - -#include "../3rdparty/qmarkdowntextedit/markdownhighlighter.h" 89 - +#include <QMarkdownTextedit/markdownhighlighter.h> 90 - 91 - namespace hunspell { 92 - class SpellChecker; 93 - -- 94 - 2.36.1 95 -
-25
pkgs/applications/office/cutemarked-ng/0002-use-pkgcofig-to-find-libraries.patch
··· 1 - From bdc66eace846edc8a7b435f7ca9f324427243ce4 Mon Sep 17 00:00:00 2001 2 - From: rewine <lhongxu@outlook.com> 3 - Date: Thu, 21 Jul 2022 17:30:22 +0800 4 - Subject: [PATCH 2/2] use pkgcofig to find libraries 5 - 6 - --- 7 - app/app.pro | 2 ++ 8 - 1 file changed, 2 insertions(+) 9 - 10 - diff --git a/app/app.pro b/app/app.pro 11 - index ab961cf..475487d 100644 12 - --- a/app/app.pro 13 - +++ b/app/app.pro 14 - @@ -13,6 +13,8 @@ win32: QT += winextras 15 - TARGET = cutemarked 16 - TEMPLATE = app 17 - CONFIG += c++11 18 - +CONFIG += link_pkgconfig 19 - +PKGCONFIG += QMarkdownTextedit hunspell md4c-html 20 - 21 - unix:!macx { 22 - CONFIG += link_pkgconfig 23 - -- 24 - 2.36.1 25 -
-58
pkgs/applications/office/cutemarked-ng/default.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - qmake, 6 - pkg-config, 7 - qttools, 8 - qtwebengine, 9 - wrapQtAppsHook, 10 - qmarkdowntextedit, 11 - md4c, 12 - hunspell, 13 - }: 14 - 15 - stdenv.mkDerivation rec { 16 - pname = "CuteMarkEd-NG"; 17 - version = "unstable-2021-07-29"; 18 - 19 - src = fetchFromGitHub { 20 - owner = "Waqar144"; 21 - repo = pname; 22 - rev = "9431ac603cef23d6f29e51e18f1eeee156f5bfb3"; 23 - sha256 = "sha256-w/D4C2ZYgI/7ZCDamTQlhrJ9vtvAMThgM/fopkdKWYc"; 24 - }; 25 - 26 - patches = [ 27 - ./0001-remove-dependency-on-vendored-library.patch 28 - ./0002-use-pkgcofig-to-find-libraries.patch 29 - ]; 30 - 31 - postPatch = '' 32 - substituteInPlace app/app.pro \ 33 - --replace '$$[QT_INSTALL_BINS]/lrelease' "lrelease" 34 - ''; 35 - 36 - nativeBuildInputs = [ 37 - qmake 38 - qttools 39 - pkg-config 40 - wrapQtAppsHook 41 - ]; 42 - 43 - buildInputs = [ 44 - md4c 45 - qtwebengine 46 - qmarkdowntextedit 47 - hunspell.dev 48 - ]; 49 - 50 - meta = with lib; { 51 - description = "Qt-based, free and open source markdown editor"; 52 - mainProgram = "cutemarked"; 53 - homepage = "https://github.com/Waqar144/CuteMarkEd-NG"; 54 - license = licenses.gpl2Plus; 55 - maintainers = with maintainers; [ rewine ]; 56 - platforms = platforms.linux; 57 - }; 58 - }
+3 -5
pkgs/applications/science/electronics/openroad/swig43-compat.patch
··· 1 - diff --git a/src/odb/src/swig/python/dbtypes.i b/src/odb/src/swig/python/dbtypes.i 2 - index 37305d55e..d85f2915e 100644 3 1 --- a/src/odb/src/swig/python/dbtypes.i 4 2 +++ b/src/odb/src/swig/python/dbtypes.i 5 3 @@ -271,7 +271,7 @@ WRAP_OBJECT_RETURN_REF(odb::dbViaParams, params_return) ··· 7 5 for(std::vector<odb::dbShape>::iterator it = $1->begin(); it != $1->end(); it++) { 8 6 PyObject *o = SWIG_NewInstanceObj(&(*it), tf, 0); 9 7 - $result = SWIG_Python_AppendOutput($result, o); 10 - + $result = SWIG_Python_AppendOutput($result, o, 0); 8 + + $result = SWIG_AppendOutput($result, o); 11 9 } 12 10 } 13 11 ··· 16 14 PyObject *layer_swig = SWIG_NewInstanceObj(layer, tf, 0); 17 15 PyObject *tuple = PyTuple_Pack(2, PyFloat_FromDouble(value), layer_swig); 18 16 - $result = SWIG_Python_AppendOutput($result, tuple); 19 - + $result = SWIG_Python_AppendOutput($result, tuple, 0); 17 + + $result = SWIG_AppendOutput($result, tuple); 20 18 } 21 19 } 22 20 ··· 24 22 for(auto it = $1->begin(); it != $1->end(); it++) { 25 23 PyObject *obj = PyInt_FromLong((long)*it); 26 24 - $result = SWIG_Python_AppendOutput($result, obj); 27 - + $result = SWIG_Python_AppendOutput($result, obj, 0); 25 + + $result = SWIG_AppendOutput($result, obj); 28 26 } 29 27 } 30 28
-4
pkgs/applications/version-management/fnc/default.nix
··· 5 5 zlib, 6 6 ncurses, 7 7 libiconv, 8 - apple-sdk_11, 9 - darwinMinVersionHook, 10 8 }: 11 9 12 10 stdenv.mkDerivation (finalAttrs: { ··· 22 20 libiconv 23 21 ncurses 24 22 zlib 25 - apple-sdk_11 26 - (darwinMinVersionHook "11.0") 27 23 ]; 28 24 29 25 makeFlags = [ "PREFIX=$(out)" ];
+4 -1
pkgs/applications/version-management/git-absorb/default.nix
··· 36 36 homepage = "https://github.com/tummychow/git-absorb"; 37 37 description = "git commit --fixup, but automatic"; 38 38 license = [ licenses.bsd3 ]; 39 - maintainers = with maintainers; [ tomfitzhenry ]; 39 + maintainers = with maintainers; [ 40 + tomfitzhenry 41 + matthiasbeyer 42 + ]; 40 43 mainProgram = "git-absorb"; 41 44 }; 42 45 }
+4 -1
pkgs/applications/version-management/git-annex-metadata-gui/default.nix
··· 37 37 homepage = "https://github.com/alpernebbi/git-annex-metadata-gui"; 38 38 description = "Graphical interface for git-annex metadata commands"; 39 39 mainProgram = "git-annex-metadata-gui"; 40 - maintainers = with maintainers; [ dotlambda ]; 40 + maintainers = with maintainers; [ 41 + dotlambda 42 + matthiasbeyer 43 + ]; 41 44 license = licenses.gpl3Plus; 42 45 platforms = with platforms; linux; 43 46 };
+1
pkgs/applications/version-management/git-annex-remote-dbx/default.nix
··· 27 27 homepage = "https://pypi.org/project/git-annex-remote-dbx/"; 28 28 license = licenses.mit; 29 29 mainProgram = "git-annex-remote-dbx"; 30 + maintainers = with maintainers; [ matthiasbeyer ]; 30 31 }; 31 32 }
+4 -1
pkgs/applications/version-management/git-cliff/default.nix
··· 43 43 homepage = "https://github.com/orhun/git-cliff"; 44 44 changelog = "https://github.com/orhun/git-cliff/blob/v${version}/CHANGELOG.md"; 45 45 license = licenses.gpl3Only; 46 - maintainers = with maintainers; [ siraben ]; 46 + maintainers = with maintainers; [ 47 + siraben 48 + matthiasbeyer 49 + ]; 47 50 mainProgram = "git-cliff"; 48 51 }; 49 52 }
+4 -1
pkgs/applications/version-management/git-fame/default.nix
··· 20 20 ''; 21 21 homepage = "http://oleander.io/git-fame-rb"; 22 22 license = licenses.mit; 23 - maintainers = with maintainers; [ nicknovitski ]; 23 + maintainers = with maintainers; [ 24 + nicknovitski 25 + matthiasbeyer 26 + ]; 24 27 platforms = platforms.unix; 25 28 mainProgram = "git-fame"; 26 29 };
+4 -1
pkgs/applications/version-management/git-gone/default.nix
··· 33 33 homepage = "https://github.com/swsnr/git-gone"; 34 34 changelog = "https://github.com/swsnr/git-gone/raw/v${version}/CHANGELOG.md"; 35 35 license = licenses.asl20; 36 - maintainers = with maintainers; [ cafkafk ]; 36 + maintainers = with maintainers; [ 37 + cafkafk 38 + matthiasbeyer 39 + ]; 37 40 mainProgram = "git-gone"; 38 41 }; 39 42 }
+4 -1
pkgs/applications/version-management/git-quickfix/default.nix
··· 39 39 homepage = "https://github.com/siedentop/git-quickfix"; 40 40 license = licenses.gpl3; 41 41 platforms = platforms.all; 42 - maintainers = with maintainers; [ cafkafk ]; 42 + maintainers = with maintainers; [ 43 + cafkafk 44 + matthiasbeyer 45 + ]; 43 46 mainProgram = "git-quickfix"; 44 47 }; 45 48 }
+1
pkgs/applications/version-management/gitlint/default.nix
··· 50 50 maintainers = with maintainers; [ 51 51 ethancedwards8 52 52 fab 53 + matthiasbeyer 53 54 ]; 54 55 mainProgram = "gitlint"; 55 56 };
+1 -2
pkgs/applications/version-management/gitoxide/default.nix
··· 5 5 cmake, 6 6 pkg-config, 7 7 stdenv, 8 - apple-sdk_11, 9 8 curl, 10 9 openssl, 11 10 buildPackages, ··· 36 35 installShellFiles 37 36 ]; 38 37 39 - buildInputs = [ curl ] ++ (if stdenv.hostPlatform.isDarwin then [ apple-sdk_11 ] else [ openssl ]); 38 + buildInputs = [ curl ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ openssl ]; 40 39 41 40 preFixup = lib.optionalString canRunCmd '' 42 41 installShellCompletion --cmd gix \
+2 -2
pkgs/applications/video/gpu-screen-recorder/default.nix
··· 26 26 27 27 stdenv.mkDerivation (finalAttrs: { 28 28 pname = "gpu-screen-recorder"; 29 - version = "4.2.3"; 29 + version = "5.0.0"; 30 30 31 31 src = fetchurl { 32 32 url = "https://dec05eba.com/snapshot/gpu-screen-recorder.git.${finalAttrs.version}.tar.gz"; 33 - hash = "sha256-M2bk1WwLlbwspEoPIRMix17ihi72UuRWwiKBdPfim2M="; 33 + hash = "sha256-w1dtFLSY71UileoF4b1QLKIHYWPE5c2KmsHyRPtn+sA="; 34 34 }; 35 35 36 36 sourceRoot = ".";
+2 -2
pkgs/applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix
··· 23 23 24 24 stdenv.mkDerivation (finalAttrs: { 25 25 pname = "gpu-screen-recorder-gtk"; 26 - version = "4.2.3"; 26 + version = "5.0.0"; 27 27 28 28 src = fetchurl { 29 29 url = "https://dec05eba.com/snapshot/gpu-screen-recorder-gtk.git.${finalAttrs.version}.tar.gz"; 30 - hash = "sha256-pMUjglgRM51hjPbt6VP0aqM0oo7IiyPXTY/kLwwdR/k="; 30 + hash = "sha256-uXbiuA1XPWZVwQGLh47rKzCZSEUEPWqYALqMuCGA7do="; 31 31 }; 32 32 33 33 sourceRoot = ".";
+2
pkgs/applications/video/obs-studio/plugins/default.nix
··· 18 18 19 19 obs-backgroundremoval = callPackage ./obs-backgroundremoval { }; 20 20 21 + obs-color-monitor = qt6Packages.callPackage ./obs-color-monitor.nix { }; 22 + 21 23 obs-command-source = callPackage ./obs-command-source.nix { }; 22 24 23 25 obs-composite-blur = callPackage ./obs-composite-blur.nix { };
+43
pkgs/applications/video/obs-studio/plugins/obs-color-monitor.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + cmake, 6 + obs-studio, 7 + qtbase, 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "obs-color-monitor"; 12 + version = "0.8.2"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "norihiro"; 16 + repo = "obs-color-monitor"; 17 + tag = finalAttrs.version; 18 + hash = "sha256-cVMpmkcw8GzNGyd80g1oKmyiEYGMcRtWtDj9MC7RYf8="; 19 + }; 20 + 21 + nativeBuildInputs = [ cmake ]; 22 + buildInputs = [ 23 + obs-studio 24 + qtbase 25 + ]; 26 + 27 + postInstall = '' 28 + mkdir $out/lib $out/share 29 + mv $out/obs-plugins/64bit $out/lib/obs-plugins 30 + mv $out/data $out/share/obs 31 + rm -rf $out/obs-plugins 32 + ''; 33 + 34 + dontWrapQtApps = true; 35 + 36 + meta = { 37 + description = "Color Monitor plugin for OBS Studio"; 38 + homepage = "https://github.com/norihiro/obs-color-monitor"; 39 + license = lib.licenses.gpl2Only; 40 + platforms = lib.platforms.linux; 41 + maintainers = with lib.maintainers; [ hlad ]; 42 + }; 43 + })
+3 -3
pkgs/applications/window-managers/dwm/dwm-status.nix
··· 32 32 33 33 rustPlatform.buildRustPackage rec { 34 34 pname = "dwm-status"; 35 - version = "1.8.1"; 35 + version = "1.9.0"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "Gerschtli"; 39 39 repo = pname; 40 40 rev = version; 41 - sha256 = "sha256-GkTPEmsnHFLUvbasAOXOQjFKs1Y9aaG87uyPvnQaT8Y="; 41 + sha256 = "sha256-OFwI4evwbXLO4ufjrh5SZia79bwbAKVoSm/IPCDku68="; 42 42 }; 43 43 44 44 nativeBuildInputs = [ ··· 52 52 xorg.libX11 53 53 ]; 54 54 55 - cargoHash = "sha256-eRfXUnyzOfVSEiwjLCaNbETUPXVU2Ed2VUNM9FjS5YE="; 55 + cargoHash = "sha256-CNhRMJZJMMKh5L308a93YL0kJLkt6DdlmILMVPQV90Q="; 56 56 57 57 postInstall = lib.optionalString (bins != [ ]) '' 58 58 wrapProgram $out/bin/dwm-status --prefix "PATH" : "${lib.makeBinPath bins}"
-9
pkgs/build-support/build-graalvm-native-image/default.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - apple-sdk_11, 5 - darwinMinVersionHook, 6 4 glibcLocales, 7 5 # The GraalVM derivation to use 8 6 graalvmDrv, ··· 35 33 extraArgs = builtins.removeAttrs args [ 36 34 "lib" 37 35 "stdenv" 38 - "apple-sdk_11" 39 - "darwinMinVersionHook" 40 36 "glibcLocales" 41 37 "jar" 42 38 "dontUnpack" ··· 58 54 graalvmDrv 59 55 glibcLocales 60 56 removeReferencesTo 61 - ]; 62 - 63 - buildInputs = lib.optionals (stdenv.hostPlatform.isDarwin) [ 64 - apple-sdk_11 65 - (darwinMinVersionHook "11.0") 66 57 ]; 67 58 68 59 nativeImageBuildArgs = nativeImageBuildArgs ++ extraNativeImageBuildArgs ++ [ graalvmXmx ];
+2 -8
pkgs/by-name/ae/aegisub/package.nix
··· 2 2 lib, 3 3 alsa-lib, 4 4 boost, 5 - curl, 6 5 meson, 7 6 config, 8 7 expat, ··· 42 41 43 42 stdenv.mkDerivation (finalAttrs: { 44 43 pname = "aegisub"; 45 - version = "3.4.0"; 44 + version = "3.4.1"; 46 45 47 46 src = fetchFromGitHub { 48 47 owner = "TypesettingTools"; 49 48 repo = "aegisub"; 50 49 tag = "v${finalAttrs.version}"; 51 - hash = "sha256-HvBbHUWKUFpne7Dj8CB2V9agBSBbB24BXnnYWUjHSDI="; 50 + hash = "sha256-3yWtBuCwr1OPOg/nh2s8SFg62vt8zuBMMp0gfOZrjqk="; 52 51 }; 53 52 54 53 nativeBuildInputs = [ ··· 63 62 64 63 buildInputs = [ 65 64 boost 66 - curl 67 65 expat 68 66 ffmpeg 69 67 ffms ··· 115 113 # system version? 116 114 substituteInPlace meson.build \ 117 115 --replace-fail "subdir('tests')" "# subdir('tests')" 118 - 119 - # https://github.com/TypesettingTools/Aegisub/issues/191 120 - substituteInPlace src/dialog_colorpicker.cpp \ 121 - --replace-fail "NSUInteger" "size_t" 122 116 ''; 123 117 124 118 # Inject the version, per the AUR package:
+3 -7
pkgs/by-name/ag/age-plugin-yubikey/package.nix
··· 6 6 pkg-config, 7 7 openssl, 8 8 pcsclite, 9 - apple-sdk_11, 10 9 }: 11 10 12 11 rustPlatform.buildRustPackage rec { ··· 31 30 pkg-config 32 31 ]; 33 32 34 - buildInputs = 35 - [ 36 - openssl 37 - ] 38 - ++ lib.optionals stdenv.hostPlatform.isLinux [ pcsclite ] 39 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 33 + buildInputs = [ 34 + openssl 35 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ pcsclite ]; 40 36 41 37 meta = with lib; { 42 38 description = "YubiKey plugin for age";
+1 -6
pkgs/by-name/al/alacritty/package.nix
··· 22 22 wayland, 23 23 xdg-utils, 24 24 25 - apple-sdk_11, 26 25 }: 27 26 let 28 27 rpathLibs = ··· 65 64 scdoc 66 65 ]; 67 66 68 - buildInputs = 69 - rpathLibs 70 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 71 - apple-sdk_11 72 - ]; 67 + buildInputs = rpathLibs; 73 68 74 69 outputs = [ 75 70 "out"
+9 -20
pkgs/by-name/an/anvil-editor/package.nix
··· 4 4 buildGoModule, 5 5 fetchzip, 6 6 pkg-config, 7 - libicns, 8 7 copyDesktopItems, 9 8 makeDesktopItem, 10 9 desktopToDarwinBundle, 11 - apple-sdk_11, 12 - darwinMinVersionHook, 13 10 wayland, 14 11 libxkbcommon, 15 12 vulkan-headers, ··· 44 41 desktopToDarwinBundle 45 42 ]; 46 43 47 - buildInputs = 48 - if stdenv.hostPlatform.isDarwin then 49 - [ 50 - apple-sdk_11 51 - # metal dependencies require 10.13 or newer 52 - (darwinMinVersionHook "10.13") 53 - ] 54 - else 55 - [ 56 - wayland 57 - libxkbcommon 58 - vulkan-headers 59 - libGL 60 - xorg.libX11 61 - xorg.libXcursor 62 - xorg.libXfixes 63 - ]; 44 + buildInputs = lib.optionals (!stdenv.hostPlatform.isDarwin) [ 45 + wayland 46 + libxkbcommon 47 + vulkan-headers 48 + libGL 49 + xorg.libX11 50 + xorg.libXcursor 51 + xorg.libXfixes 52 + ]; 64 53 65 54 # Got different result in utf8 char length? 66 55 checkFlags = [ "-skip=^TestClearAfter$" ];
-4
pkgs/by-name/ar/ares/package.nix
··· 2 2 lib, 3 3 SDL2, 4 4 alsa-lib, 5 - apple-sdk_11, 6 5 autoPatchelfHook, 7 6 fetchFromGitHub, 8 7 gtk3, ··· 67 66 libpulseaudio 68 67 openal 69 68 udev 70 - ] 71 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 72 - apple-sdk_11 73 69 ]; 74 70 75 71 appendRunpaths = [ (lib.makeLibraryPath [ vulkan-loader ]) ];
-2
pkgs/by-name/au/audacity/package.nix
··· 52 52 wavpack, 53 53 wxGTK32, 54 54 gtk3, 55 - apple-sdk_11, 56 55 libpng, 57 56 libjpeg, 58 57 }: ··· 144 143 util-linux 145 144 ] 146 145 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 147 - apple-sdk_11 148 146 libpng 149 147 libjpeg 150 148 ];
+1 -2
pkgs/by-name/au/augustus/package.nix
··· 7 7 SDL2_mixer, 8 8 libpng, 9 9 darwin, 10 - apple-sdk_11, 11 10 libicns, 12 11 imagemagick, 13 12 }: ··· 37 36 SDL2 38 37 SDL2_mixer 39 38 libpng 40 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 39 + ]; 41 40 42 41 installPhase = lib.optionalString stdenv.hostPlatform.isDarwin '' 43 42 runHook preInstall
+4 -1
pkgs/by-name/ba/bacon/package.nix
··· 34 34 homepage = "https://github.com/Canop/bacon"; 35 35 changelog = "https://github.com/Canop/bacon/blob/v${version}/CHANGELOG.md"; 36 36 license = lib.licenses.agpl3Only; 37 - maintainers = with lib.maintainers; [ FlorianFranzen ]; 37 + maintainers = with lib.maintainers; [ 38 + FlorianFranzen 39 + matthiasbeyer 40 + ]; 38 41 }; 39 42 }
+4 -1
pkgs/by-name/bl/blesh/package.nix
··· 60 60 description = "Bash Line Editor -- a full-featured line editor written in pure Bash"; 61 61 mainProgram = "blesh-share"; 62 62 license = licenses.bsd3; 63 - maintainers = with maintainers; [ aiotter ]; 63 + maintainers = with maintainers; [ 64 + aiotter 65 + matthiasbeyer 66 + ]; 64 67 platforms = platforms.unix; 65 68 }; 66 69 }
-6
pkgs/by-name/bo/bottom/package.nix
··· 4 4 fetchFromGitHub, 5 5 autoAddDriverRunpath, 6 6 installShellFiles, 7 - stdenv, 8 - apple-sdk_11, 9 7 versionCheckHook, 10 8 nix-update-script, 11 9 }: ··· 26 24 nativeBuildInputs = [ 27 25 autoAddDriverRunpath 28 26 installShellFiles 29 - ]; 30 - 31 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 32 - apple-sdk_11 33 27 ]; 34 28 35 29 postInstall = ''
+3 -10
pkgs/by-name/br/bruno-cli/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 buildNpmPackage, 5 4 bruno, 6 5 pkg-config, 7 6 pango, 8 - apple-sdk_11, 9 7 testers, 10 8 bruno-cli, 11 9 }: ··· 28 26 pkg-config 29 27 ]; 30 28 31 - buildInputs = 32 - [ 33 - pango 34 - ] 35 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 36 - # fix for: https://github.com/NixOS/nixpkgs/issues/272156 37 - apple-sdk_11 38 - ]; 29 + buildInputs = [ 30 + pango 31 + ]; 39 32 40 33 ELECTRON_SKIP_BINARY_DOWNLOAD = 1; 41 34
+5 -11
pkgs/by-name/br/bruno/package.nix
··· 13 13 cairo, 14 14 pango, 15 15 npm-lockfile-fix, 16 - apple-sdk_11, 17 16 }: 18 17 19 18 buildNpmPackage rec { ··· 43 42 copyDesktopItems 44 43 ]; 45 44 46 - buildInputs = 47 - [ 48 - pixman 49 - cairo 50 - pango 51 - ] 52 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 53 - # fix for: https://github.com/NixOS/nixpkgs/issues/272156 54 - apple-sdk_11 55 - ]; 45 + buildInputs = [ 46 + pixman 47 + cairo 48 + pango 49 + ]; 56 50 57 51 desktopItems = [ 58 52 (makeDesktopItem {
+1 -4
pkgs/by-name/bs/bsnes-hd/package.nix
··· 2 2 lib, 3 3 SDL2, 4 4 alsa-lib, 5 - apple-sdk_11, 6 5 fetchFromGitHub, 7 - fetchpatch, 8 6 gtk3, 9 7 gtksourceview3, 10 8 libX11, ··· 69 67 alsa-lib 70 68 openal 71 69 libpulseaudio 72 - ] 73 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 70 + ]; 74 71 75 72 makeFlags = 76 73 [
+35
pkgs/by-name/ca/cargo-3ds/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + rustPlatform.buildRustPackage rec { 8 + pname = "cargo-3ds"; 9 + version = "0.1.3"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "rust3ds"; 13 + repo = "cargo-3ds"; 14 + tag = "v${version}"; 15 + hash = "sha256-G1XSpvE94gcamvyKKzGZgj5QSwkBNbYWYdZ17ScwW90="; 16 + }; 17 + 18 + cargoHash = "sha256-Gt8TJ6VTvpqtpQuD4WYN45/gccfgnw13sKeMqHboTm8="; 19 + 20 + # Integration tests do not run in Nix build environment due to needing to 21 + # create and build Cargo workspaces. 22 + doCheck = false; 23 + 24 + passthru.updateScript = nix-update-script { }; 25 + 26 + meta = { 27 + description = "Cargo command to work with Nintendo 3DS project binaries"; 28 + homepage = "https://github.com/rust3ds/cargo-3ds"; 29 + license = with lib.licenses; [ 30 + mit 31 + asl20 32 + ]; 33 + maintainers = with lib.maintainers; [ l1npengtul ]; 34 + }; 35 + }
-3
pkgs/by-name/ca/cargo-deadlinks/package.nix
··· 3 3 stdenv, 4 4 rustPlatform, 5 5 fetchFromGitHub, 6 - apple-sdk_11, 7 6 }: 8 7 9 8 rustPlatform.buildRustPackage rec { ··· 30 29 ++ lib.optional (stdenv.hostPlatform.system != "x86_64-linux") 31 30 # assumes the target is x86_64-unknown-linux-gnu 32 31 "--skip simple_project::it_checks_okay_project_correctly"; 33 - 34 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 35 32 36 33 meta = with lib; { 37 34 description = "Cargo subcommand to check rust documentation for broken links";
-4
pkgs/by-name/ca/cargo-spellcheck/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 - stdenv, 6 - apple-sdk_11, 7 5 }: 8 6 9 7 rustPlatform.buildRustPackage rec { ··· 20 18 cargoHash = "sha256-mxx4G77ldPfVorNa1LGTcA0Idwmrcl8S/ze+UUoLHhI="; 21 19 22 20 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 23 - 24 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 25 21 26 22 preCheck = "HOME=$(mktemp -d)"; 27 23
+18 -7
pkgs/by-name/ce/ceptre/package.nix
··· 1 - { lib, stdenv, fetchFromGitHub, mlton }: 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + mlton, 6 + }: 2 7 3 8 stdenv.mkDerivation { 4 9 pname = "ceptre"; 5 - version = "unstable-2016-11-27"; 10 + version = "0-unstable-2024-8-26"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "chrisamaphone"; 9 14 repo = "interactive-lp"; 10 - rev = "e436fda2ccd44e9c9d226feced9d204311deacf5"; 11 - hash = "sha256-COYrE9O/Y1/ZBNHNakBwrUVklCuk144RF9bjwa3rl5w="; 15 + rev = "22df9ff622f3363824f345089a25016e2a897077"; 16 + hash = "sha256-MKA/289KWIYzHW0RbHC0Q2fMJT45WcABZrNsCWKZr4Y="; 12 17 fetchSubmodules = true; 13 18 }; 14 19 15 20 nativeBuildInputs = [ mlton ]; 16 21 17 22 installPhase = '' 23 + runHook preInstall 18 24 mkdir -p $out/bin 19 25 cp ceptre $out/bin 26 + runHook postInstall 20 27 ''; 21 28 22 - meta = with lib; { 29 + meta = { 23 30 description = "Linear logic programming language for modeling generative interactive systems"; 24 31 mainProgram = "ceptre"; 25 32 homepage = "https://github.com/chrisamaphone/interactive-lp"; 26 - maintainers = with maintainers; [ pSub ]; 27 - platforms = platforms.unix; 33 + maintainers = with lib.maintainers; [ 34 + NotAShelf 35 + pSub 36 + ]; 37 + platforms = lib.platforms.unix; 38 + license = lib.licenses.unfree; 28 39 }; 29 40 }
-6
pkgs/by-name/ch/chrony/package.nix
··· 10 10 libseccomp, 11 11 pps-tools, 12 12 nixosTests, 13 - apple-sdk_11, 14 - darwinMinVersionHook, 15 13 }: 16 14 17 15 stdenv.mkDerivation rec { ··· 40 38 libcap 41 39 libseccomp 42 40 pps-tools 43 - ] 44 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 45 - apple-sdk_11 46 - (darwinMinVersionHook "10.13") 47 41 ]; 48 42 49 43 configureFlags = [
+3 -3
pkgs/by-name/cl/cloudflare-dynamic-dns/package.nix
··· 7 7 }: 8 8 buildGoModule rec { 9 9 pname = "cloudflare-dynamic-dns"; 10 - version = "4.3.12"; 10 + version = "4.3.13"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "zebradil"; 14 14 repo = "cloudflare-dynamic-dns"; 15 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-28fIxwQmM9Lmu5Ak31+5/zw/syYwBDnQDZ0CYfmMR+U="; 16 + hash = "sha256-MeVLDgr332B9KWvahlhRz7Yf3R/j2KwR9ROhU3eQnwA="; 17 17 }; 18 18 19 - vendorHash = "sha256-ie5/9qChgEWXKPqhbJzOalKPxTBr4UN9exxvfB8/HrQ="; 19 + vendorHash = "sha256-FzEPvLI6tvyQ/nMgCBXPc1RR8YwDU1cC5f/LSZfF3Bc="; 20 20 21 21 subPackages = "."; 22 22
-2
pkgs/by-name/co/contour/package.nix
··· 20 20 yaml-cpp, 21 21 ncurses, 22 22 file, 23 - apple-sdk_11, 24 23 libutil, 25 24 sigtool, 26 25 nixosTests, ··· 73 72 ] 74 73 ++ lib.optionals stdenv.hostPlatform.isLinux [ libutempter ] 75 74 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 76 - apple-sdk_11 77 75 libutil 78 76 ]; 79 77
+1 -5
pkgs/by-name/co/corsix-th/package.nix
··· 12 12 SDL2, 13 13 SDL2_mixer, 14 14 timidity, 15 - # Darwin dependencies 16 - libiconv, 17 - apple-sdk_11, 18 15 # Update 19 16 nix-update-script, 20 17 }: ··· 60 57 SDL2 61 58 SDL2_mixer 62 59 timidity 63 - ] 64 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 60 + ]; 65 61 66 62 cmakeFlags = [ "-Wno-dev" ]; 67 63
+17 -23
pkgs/by-name/da/darkradiant/package.nix
··· 21 21 python3, 22 22 asciidoctor, 23 23 libgit2, 24 - apple-sdk_11, 25 24 wrapGAppsHook3, 26 25 installShellFiles, 27 26 buildPlugins ? true, ··· 46 45 installShellFiles 47 46 ]; 48 47 49 - buildInputs = 50 - [ 51 - zlib 52 - libjpeg 53 - wxGTK32 54 - libxml2 55 - libsigcxx 56 - libpng 57 - openal 58 - libvorbis 59 - eigen 60 - ftgl 61 - freetype 62 - glew 63 - glib 64 - libgit2 65 - python3 66 - ] 67 - ++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 ] 68 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 69 - apple-sdk_11 70 - ]; 48 + buildInputs = [ 49 + zlib 50 + libjpeg 51 + wxGTK32 52 + libxml2 53 + libsigcxx 54 + libpng 55 + openal 56 + libvorbis 57 + eigen 58 + ftgl 59 + freetype 60 + glew 61 + glib 62 + libgit2 63 + python3 64 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 ]; 71 65 72 66 doCheck = true; 73 67
+1 -2
pkgs/by-name/de/debase/package.nix
··· 1 1 { 2 - apple-sdk_11, 3 2 fetchFromGitHub, 4 3 fetchpatch, # Delete at next version bump. 5 4 lib, ··· 53 52 54 53 buildInputs = [ 55 54 libgit2 56 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 55 + ]; 57 56 58 57 installPhase = '' 59 58 runHook preInstall
+10 -13
pkgs/by-name/de/dexed/package.nix
··· 13 13 freetype, 14 14 alsa-lib, 15 15 libjack2, 16 - apple-sdk_11, 17 16 }: 18 17 19 18 stdenv.mkDerivation (finalAttrs: { ··· 49 48 pkg-config 50 49 ]; 51 50 52 - buildInputs = 53 - lib.optionals stdenv.hostPlatform.isLinux [ 54 - libX11 55 - libXext 56 - libXcursor 57 - libXinerama 58 - libXrandr 59 - freetype 60 - alsa-lib 61 - libjack2 62 - ] 63 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 51 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 52 + libX11 53 + libXext 54 + libXcursor 55 + libXinerama 56 + libXrandr 57 + freetype 58 + alsa-lib 59 + libjack2 60 + ]; 64 61 65 62 # JUCE insists on only dlopen'ing these 66 63 NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isLinux (toString [
+62
pkgs/by-name/dt/dtbloader/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + llvmPackages, 6 + nix-update-script, 7 + }: 8 + 9 + stdenv.mkDerivation (finalAttrs: { 10 + pname = "dtbloader"; 11 + version = "1.2.2"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "TravMurav"; 15 + repo = "dtbloader"; 16 + tag = finalAttrs.version; 17 + hash = "sha256-5Efxi0cojhq9mqB5VMShXx/Sp4CE6Cvr1pcwnUm5zlo="; 18 + fetchSubmodules = true; 19 + }; 20 + 21 + nativeBuildInputs = with llvmPackages; [ 22 + clang 23 + lld 24 + llvm 25 + ]; 26 + 27 + # Disable hardening which adds incompatible flags like -fPIC 28 + hardeningDisable = [ "all" ]; 29 + 30 + buildPhase = '' 31 + make -j$NIX_BUILD_CORES 32 + ''; 33 + 34 + installPhase = '' 35 + runHook preInstall 36 + 37 + mkdir -p $out/share/dtbloader/efi 38 + cp build-aarch64/dtbloader.efi $out/share/dtbloader/efi/ 39 + 40 + mkdir -p $out/share/doc/dtbloader 41 + cp README.md $out/share/doc/dtbloader/ 42 + 43 + runHook postInstall 44 + ''; 45 + 46 + passthru = { 47 + updateScript = nix-update-script { }; 48 + }; 49 + 50 + meta = { 51 + description = "EFI driver that finds and installs DeviceTree into the UEFI configuration table"; 52 + homepage = "https://github.com/TravMurav/dtbloader"; 53 + changelog = "https://github.com/TravMurav/dtbloader/releases/tag/${finalAttrs.version}"; 54 + license = lib.licenses.bsd3; 55 + platforms = [ 56 + # EFI file only works on aarch64 platforms 57 + "aarch64-linux" 58 + ]; 59 + maintainers = with lib.maintainers; [ liberodark ]; 60 + mainProgram = "dtbloader.efi"; 61 + }; 62 + })
+9 -12
pkgs/by-name/en/en-croissant/package.nix
··· 15 15 libsoup_2_4, 16 16 webkitgtk_4_0, 17 17 gst_all_1, 18 - apple-sdk_11, 19 18 }: 20 19 21 20 rustPlatform.buildRustPackage rec { ··· 51 50 ++ lib.optionals stdenv.hostPlatform.isLinux [ wrapGAppsHook3 ] 52 51 ++ lib.optionals stdenv.hostPlatform.isDarwin [ makeBinaryWrapper ]; 53 52 54 - buildInputs = 55 - lib.optionals stdenv.hostPlatform.isLinux [ 56 - openssl 57 - libsoup_2_4 58 - webkitgtk_4_0 59 - gst_all_1.gstreamer 60 - gst_all_1.gst-plugins-base 61 - gst_all_1.gst-plugins-bad 62 - gst_all_1.gst-plugins-good 63 - ] 64 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 53 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 54 + openssl 55 + libsoup_2_4 56 + webkitgtk_4_0 57 + gst_all_1.gstreamer 58 + gst_all_1.gst-plugins-base 59 + gst_all_1.gst-plugins-bad 60 + gst_all_1.gst-plugins-good 61 + ]; 65 62 66 63 doCheck = false; # many scoring tests fail 67 64
-6
pkgs/by-name/es/espanso/package.nix
··· 19 19 wxGTK32, 20 20 makeWrapper, 21 21 stdenv, 22 - apple-sdk_11, 23 - darwinMinVersionHook, 24 22 waylandSupport ? false, 25 23 x11Support ? stdenv.hostPlatform.isLinux, 26 24 testers, ··· 80 78 dbus 81 79 libnotify 82 80 libxkbcommon 83 - ] 84 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 85 - apple-sdk_11 86 - (darwinMinVersionHook "10.13") 87 81 ] 88 82 ++ lib.optionals waylandSupport [ 89 83 wl-clipboard
+1
pkgs/by-name/fd/fd/package.nix
··· 69 69 globin 70 70 ma27 71 71 zowoq 72 + matthiasbeyer 72 73 ]; 73 74 mainProgram = "fd"; 74 75 };
+1 -7
pkgs/by-name/fe/febio-studio/package.nix
··· 9 9 qt6Packages, 10 10 febio, 11 11 glew, 12 - apple-sdk_11, 13 - darwinMinVersionHook, 14 12 fetchpatch, 15 13 sshSupport ? true, 16 14 openssl, ··· 74 72 ] 75 73 ++ lib.optional tetgenSupport tetgen 76 74 ++ lib.optional ffmpegSupport ffmpeg 77 - ++ lib.optional dicomSupport dcmtk 78 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 79 - apple-sdk_11 80 - (darwinMinVersionHook "10.15") 81 - ]; 75 + ++ lib.optional dicomSupport dcmtk; 82 76 83 77 meta = { 84 78 description = "FEBio Suite Solver";
+1 -9
pkgs/by-name/fe/febio/package.nix
··· 4 4 fetchFromGitHub, 5 5 fetchpatch2, 6 6 replaceVars, 7 - apple-sdk_11, 8 7 cmake, 9 - darwinMinVersionHook, 10 8 ninja, 11 9 zlib, 12 10 mklSupport ? true, ··· 48 46 ninja 49 47 ]; 50 48 51 - buildInputs = 52 - [ zlib ] 53 - ++ lib.optionals mklSupport [ mkl ] 54 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 55 - apple-sdk_11 56 - (darwinMinVersionHook "10.15") 57 - ]; 49 + buildInputs = [ zlib ] ++ lib.optionals mklSupport [ mkl ]; 58 50 59 51 meta = { 60 52 description = "FEBio Suite Solver";
-3
pkgs/by-name/fi/findup/package.nix
··· 4 4 fetchFromGitHub, 5 5 testers, 6 6 zig_0_11, 7 - apple-sdk_11, 8 7 }: 9 8 let 10 9 zig = zig_0_11; ··· 21 20 }; 22 21 23 22 nativeBuildInputs = [ zig.hook ]; 24 - 25 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 26 23 27 24 passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; 28 25
+9 -12
pkgs/by-name/fi/fire/package.nix
··· 13 13 libXcursor, 14 14 freetype, 15 15 alsa-lib, 16 - apple-sdk_11, 17 16 }: 18 17 19 18 stdenv.mkDerivation (finalAttrs: { ··· 53 52 pkg-config 54 53 ]; 55 54 56 - buildInputs = 57 - lib.optionals stdenv.hostPlatform.isLinux [ 58 - libX11 59 - libXrandr 60 - libXinerama 61 - libXext 62 - libXcursor 63 - freetype 64 - alsa-lib 65 - ] 66 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 55 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 56 + libX11 57 + libXrandr 58 + libXinerama 59 + libXext 60 + libXcursor 61 + freetype 62 + alsa-lib 63 + ]; 67 64 68 65 cmakeFlags = [ 69 66 (lib.cmakeBool "FETCHCONTENT_FULLY_DISCONNECTED" true)
+6 -3
pkgs/by-name/fo/foo2zjs/package.nix
··· 19 19 sha256 = "14x3wizvncdy0xgvmcx541qanwb7bg76abygqy17bxycn1zh5r1x"; 20 20 }; 21 21 22 - buildInputs = [ 22 + nativeBuildInputs = [ 23 + bc 23 24 foomatic-filters 24 - bc 25 25 ghostscript 26 + vim 27 + ]; 28 + 29 + buildInputs = [ 26 30 systemd 27 - vim 28 31 ]; 29 32 30 33 patches = [
-4
pkgs/by-name/gc/gcs/package.nix
··· 17 17 mupdf, 18 18 fontconfig, 19 19 freetype, 20 - apple-sdk_11, 21 20 }: 22 21 23 22 buildGoModule rec { ··· 88 87 libXxf86vm 89 88 fontconfig 90 89 freetype 91 - ] 92 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 93 - apple-sdk_11 94 90 ]; 95 91 96 92 # flags are based on https://github.com/richardwilkes/gcs/blob/master/build.sh
+1 -3
pkgs/by-name/gg/gg-jj/package.nix
··· 17 17 18 18 openssl, 19 19 webkitgtk_4_1, 20 - apple-sdk_11, 21 20 22 21 versionCheckHook, 23 22 nix-update-script, ··· 71 70 [ openssl ] 72 71 ++ lib.optionals stdenv.hostPlatform.isLinux [ 73 72 webkitgtk_4_1 74 - ] 75 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 73 + ]; 76 74 77 75 env.OPENSSL_NO_VENDOR = true; 78 76
-3
pkgs/by-name/gh/ghc_filesystem/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - apple-sdk_11, 5 4 cmake, 6 5 fetchFromGitHub, 7 6 nix-update-script, ··· 19 18 }; 20 19 21 20 nativeBuildInputs = [ cmake ]; 22 - 23 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 24 21 25 22 passthru = { 26 23 updateScript = nix-update-script { };
-8
pkgs/by-name/gi/git-interactive-rebase-tool/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 fetchFromGitHub, 5 4 rustPlatform, 6 - libiconv, 7 - apple-sdk_11, 8 5 }: 9 6 10 7 rustPlatform.buildRustPackage rec { ··· 19 16 }; 20 17 21 18 cargoHash = "sha256-9pUUKxPpyoX9f10ZiLWsol2rv66WzQqwa6VubRTrT9Y="; 22 - 23 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 24 - libiconv 25 - apple-sdk_11 26 - ]; 27 19 28 20 # Compilation during tests fails if this env var is not set. 29 21 preCheck = "export GIRT_BUILD_GIT_HASH=${version}";
-7
pkgs/by-name/gl/glsl_analyzer/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 zig_0_13, 6 - apple-sdk_11, 7 6 }: 8 7 9 8 stdenv.mkDerivation (finalAttrs: { ··· 19 18 20 19 nativeBuildInputs = [ 21 20 zig_0_13.hook 22 - ]; 23 - 24 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 25 - # The package failed to build on x86_64-darwin because the default was the 10.12 SDK 26 - # Once the default on all platforms has been raised to the 11.0 SDK or higher, this can be removed. 27 - apple-sdk_11 28 21 ]; 29 22 30 23 postPatch = ''
+2 -2
pkgs/by-name/he/heptabase/package.nix
··· 5 5 }: 6 6 let 7 7 pname = "heptabase"; 8 - version = "1.49.0"; 8 + version = "1.50.0"; 9 9 src = fetchurl { 10 10 url = "https://github.com/heptameta/project-meta/releases/download/v${version}/Heptabase-${version}.AppImage"; 11 - hash = "sha256-4YjhJEuDMKNvIHir6Je4MKbgZzTfPxdMeuvF/F+kYvw="; 11 + hash = "sha256-HFnHzftnLO4nfHxXhvHH4+lVdcPp2N3ihgMhnxSv2bA="; 12 12 }; 13 13 14 14 appimageContents = appimageTools.extractType2 { inherit pname version src; };
+2 -2
pkgs/by-name/hy/hyprutils/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "hyprutils"; 13 - version = "0.3.0"; 13 + version = "0.3.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "hyprwm"; 17 17 repo = "hyprutils"; 18 18 rev = "refs/tags/v${finalAttrs.version}"; 19 - hash = "sha256-5Wvsn+0/Hu6eUUToK9hBWwRlbg1i++lc9or4yPYBUuk="; 19 + hash = "sha256-7D5j2sh3Miw2CRdmx8ftepb342pl36kDFJy+3aVfDVc="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
-5
pkgs/by-name/ja/jankyborders/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - apple-sdk_11, 5 4 fetchFromGitHub, 6 5 pkg-config, 7 6 testers, ··· 20 19 21 20 nativeBuildInputs = [ 22 21 pkg-config 23 - ]; 24 - 25 - buildInputs = [ 26 - apple-sdk_11 27 22 ]; 28 23 29 24 installPhase = ''
+1 -7
pkgs/by-name/je/jellyfin-web/package.nix
··· 9 9 xcbuild, 10 10 pango, 11 11 giflib, 12 - apple-sdk_11, 13 - darwinMinVersionHook, 14 12 jellyfin, 15 13 }: 16 14 buildNpmPackage rec { ··· 26 24 hash = "sha256-xmy2cr6MJSen6Pok3Wde4mBcu5pM4qtGEBfqMpGdAxY="; 27 25 }; 28 26 29 - nodejs = nodejs_20; # does not build with 22 27 + nodejs = nodejs_20; # does not build with 22 30 28 31 29 postPatch = '' 32 30 substituteInPlace webpack.common.js \ ··· 48 46 [ pango ] 49 47 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 50 48 giflib 51 - apple-sdk_11 52 - # node-canvas builds code that requires aligned_alloc, 53 - # which on Darwin requires at least the 10.15 SDK 54 - (darwinMinVersionHook "10.15") 55 49 ]; 56 50 57 51 installPhase = ''
+1 -2
pkgs/by-name/ju/julius/package.nix
··· 7 7 cmake, 8 8 libpng, 9 9 darwin, 10 - apple-sdk_11, 11 10 libicns, 12 11 imagemagick, 13 12 }: ··· 42 41 SDL2 43 42 SDL2_mixer 44 43 libpng 45 - ] ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 44 + ]; 46 45 47 46 installPhase = lib.optionalString stdenv.hostPlatform.isDarwin '' 48 47 runHook preInstall
+7 -12
pkgs/by-name/ka/kando/package.nix
··· 19 19 libXtst, 20 20 libXi, 21 21 wayland, 22 - apple-sdk_11, 23 22 }: 24 23 25 24 buildNpmPackage rec { ··· 50 49 copyDesktopItems 51 50 ]; 52 51 53 - buildInputs = 54 - lib.optionals stdenv.hostPlatform.isLinux [ 55 - libxkbcommon 56 - libX11 57 - libXtst 58 - libXi 59 - wayland 60 - ] 61 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 62 - apple-sdk_11 63 - ]; 52 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 53 + libxkbcommon 54 + libX11 55 + libXtst 56 + libXi 57 + wayland 58 + ]; 64 59 65 60 dontUseCmakeConfigure = true; 66 61
+2 -2
pkgs/by-name/li/lilex/package.nix
··· 6 6 }: 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "lilex"; 9 - version = "2.530"; 9 + version = "2.600"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mishamyrt/Lilex/releases/download/${version}/Lilex.zip"; 13 - hash = "sha256-sBn8DaXj7OXHNaoEAhjTuMmUVUbS0zNZi1h7EjembEo="; 13 + hash = "sha256-G8zm35aSiXrnGgYePSwLMBzwSnd9mfCinHZSG1qBH0w="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ unzip ];
-3
pkgs/by-name/li/linuxwave/package.nix
··· 4 4 fetchFromGitHub, 5 5 installShellFiles, 6 6 zig_0_13, 7 - apple-sdk_11, 8 7 callPackage, 9 8 }: 10 9 ··· 31 30 installShellFiles 32 31 zig.hook 33 32 ]; 34 - 35 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 36 33 37 34 postInstall = '' 38 35 installManPage man/linuxwave.1
+57
pkgs/by-name/lm/lm4flash/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + stdenv, 4 + libusb1, 5 + pkg-config, 6 + lib, 7 + writeText, 8 + }: 9 + let 10 + stellaris-udev-rules = writeText "61.stellpad.rules" '' 11 + SUBSYSTEM=="usb", ATTRS{idVendor}=="1cbe", ATTRS{idProduct}=="00fd", MODE="0666" 12 + ''; 13 + in 14 + stdenv.mkDerivation rec { 15 + pname = "lm4flash"; 16 + version = "0.1.3"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "utzig"; 20 + repo = "lm4tools"; 21 + tag = "v${version}"; 22 + hash = "sha256-ZjuCH/XjQEgg6KHAvb95/BkAy+C2OdbtBb/i6K30+uo="; 23 + }; 24 + sourceRoot = "${src.name}/lm4flash"; 25 + 26 + strictDeps = true; 27 + 28 + nativeBuildInputs = [ 29 + pkg-config 30 + ]; 31 + 32 + buildInputs = [ 33 + libusb1 34 + ]; 35 + 36 + buildFlags = [ "release" ]; 37 + 38 + installFlags = [ "PREFIX=$(out)" ]; 39 + 40 + postInstall = '' 41 + install -Dm644 "${stellaris-udev-rules}" "$out/etc/udev/rules.d/61.stellpad.rules" 42 + ''; 43 + 44 + meta = { 45 + description = "Command-line firmware flashing tool for the Stellaris Launchpad"; 46 + longDescription = '' 47 + Command-line firmware flashing tool using libusb-1.0 to communicate with 48 + the Stellaris Launchpad ICDI. Works on all Linux, Mac OS X, Windows, and 49 + BSD systems. 50 + ''; 51 + homepage = "https://github.com/utzig/lm4tools"; 52 + license = lib.licenses.gpl2Plus; 53 + mainProgram = "lm4flash"; 54 + maintainers = with lib.maintainers; [ MostafaKhaled ]; 55 + platforms = lib.platforms.all; 56 + }; 57 + }
-4
pkgs/by-name/ln/lnav/package.nix
··· 19 19 cargo, 20 20 rustPlatform, 21 21 rustc, 22 - apple-sdk_11, 23 22 }: 24 23 25 24 stdenv.mkDerivation rec { ··· 57 56 sqlite 58 57 curl 59 58 libarchive 60 - ] 61 - ++ lib.optionals stdenv.isDarwin [ 62 - apple-sdk_11 63 59 ] 64 60 ++ lib.optionals (!stdenv.isDarwin) [ 65 61 gpm
-4
pkgs/by-name/ls/lsd/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 fetchFromGitHub, 5 4 rustPlatform, 6 5 installShellFiles, 7 - apple-sdk_11, 8 6 pandoc, 9 7 testers, 10 8 lsd, ··· 27 25 installShellFiles 28 26 pandoc 29 27 ]; 30 - 31 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 32 28 33 29 postInstall = '' 34 30 pandoc --standalone --to man doc/lsd.md -o lsd.1
+4 -12
pkgs/by-name/ma/materialize/package.nix
··· 15 15 # buildInputs 16 16 openssl, 17 17 rdkafka, 18 - apple-sdk_11, 19 - darwinMinVersionHook, 20 18 21 19 versionCheckHook, 22 20 nix-update-script, ··· 138 136 # Needed to get openssl-sys to use pkg-config. 139 137 OPENSSL_NO_VENDOR = 1; 140 138 141 - buildInputs = 142 - [ 143 - openssl 144 - rdkafka 145 - ] 146 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 147 - # error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer 148 - apple-sdk_11 149 - (darwinMinVersionHook "10.13") 150 - ]; 139 + buildInputs = [ 140 + openssl 141 + rdkafka 142 + ]; 151 143 152 144 # the check phase requires linking with rocksdb which can be a problem since 153 145 # the rust rocksdb crate is not updated very often.
-3
pkgs/by-name/mi/minizign/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 zig_0_13, 6 - apple-sdk_11, 7 6 }: 8 7 9 8 let ··· 23 22 nativeBuildInputs = [ 24 23 zig.hook 25 24 ]; 26 - 27 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 28 25 29 26 meta = { 30 27 description = "Minisign reimplemented in Zig";
+1 -5
pkgs/by-name/mo/modrinth-app-unwrapped/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - apple-sdk_11, 5 4 cacert, 6 5 cargo-tauri, 7 6 desktop-file-utils, ··· 48 47 pnpm.configHook 49 48 ] ++ lib.optional stdenv.hostPlatform.isDarwin makeBinaryWrapper; 50 49 51 - buildInputs = 52 - [ openssl ] 53 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11 54 - ++ lib.optional stdenv.hostPlatform.isLinux webkitgtk_4_1; 50 + buildInputs = [ openssl ] ++ lib.optional stdenv.hostPlatform.isLinux webkitgtk_4_1; 55 51 56 52 # Tests fail on other, unrelated packages in the monorepo 57 53 cargoTestFlags = [
-4
pkgs/by-name/mo/moonlight-qt/package.nix
··· 19 19 libxkbcommon, 20 20 wayland, 21 21 libdrm, 22 - apple-sdk_11, 23 22 nix-update-script, 24 23 }: 25 24 ··· 70 69 qt6.qtwayland 71 70 wayland 72 71 libdrm 73 - ] 74 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 75 - apple-sdk_11 76 72 ]; 77 73 78 74 qmakeFlags = [ "CONFIG+=disable-prebuilts" ];
+25
pkgs/by-name/mo/moxide/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + rustPlatform.buildRustPackage rec { 7 + pname = "moxide"; 8 + version = "0.1.0"; 9 + 10 + cargoHash = "sha256-MqJ3lxnzvvmNXEMgx0su8vRDXAZbNtPuuphNzjeMN+w="; 11 + src = fetchFromGitHub { 12 + owner = "dlurak"; 13 + repo = "moxide"; 14 + tag = "v${version}"; 15 + hash = "sha256-XYEcMaHqu84aKIcV0pQZXl4sIeH9BkRGA2gcwZveXCU="; 16 + }; 17 + 18 + meta = { 19 + description = "Tmux session manager with a modular configuration"; 20 + mainProgram = "moxide"; 21 + homepage = "https://github.com/dlurak/moxide"; 22 + license = lib.licenses.gpl3Only; 23 + maintainers = with lib.maintainers; [ dlurak ]; 24 + }; 25 + }
-2
pkgs/by-name/nc/ncspot/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 alsa-lib, 5 - apple-sdk_11, 6 5 config, 7 6 dbus, 8 7 fetchFromGitHub, ··· 50 49 51 50 buildInputs = 52 51 [ ncurses ] 53 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11 54 52 ++ lib.optional stdenv.hostPlatform.isLinux openssl 55 53 ++ lib.optional (withALSA || withRodio) alsa-lib 56 54 ++ lib.optional withClipboard libxcb
+1 -2
pkgs/by-name/ne/neovide/package.nix
··· 13 13 pkg-config, 14 14 python3, 15 15 removeReferencesTo, 16 - apple-sdk_11, 17 16 cctools, 18 17 SDL2, 19 18 fontconfig, ··· 81 80 SDL2 82 81 fontconfig 83 82 rustPlatform.bindgenHook 84 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 83 + ]; 85 84 86 85 postFixup = 87 86 let
+7 -4
pkgs/by-name/no/nom/package.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "nom"; 8 - version = "2.6.2"; 8 + version = "2.7.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "guyfedwards"; 12 12 repo = "nom"; 13 13 rev = "v${version}"; 14 - hash = "sha256-oaManxhksEBwbe1jmkRmOJMhYFiulGTVCuto4RMznvg="; 14 + hash = "sha256-8zUIqOKbiD8tOWfTU9ixyxWMIRsmskmJVcXyM6X9JNs="; 15 15 }; 16 16 17 - vendorHash = "sha256-xolhwdWRjYZMgwI4jq0fGzvxnNjx6EplvZC7XMvBw+M="; 17 + vendorHash = "sha256-d5KTDZKfuzv84oMgmsjJoXGO5XYLVKxOB5XehqgRvYw="; 18 18 19 19 meta = with lib; { 20 20 homepage = "https://github.com/guyfedwards/nom"; 21 21 description = "RSS reader for the terminal"; 22 22 platforms = platforms.linux ++ platforms.darwin; 23 23 license = licenses.gpl3Only; 24 - maintainers = with maintainers; [ nadir-ishiguro ]; 24 + maintainers = with maintainers; [ 25 + nadir-ishiguro 26 + matthiasbeyer 27 + ]; 25 28 mainProgram = "nom"; 26 29 }; 27 30 }
-3
pkgs/by-name/nt/ntpd-rs/package.nix
··· 3 3 stdenv, 4 4 rustPlatform, 5 5 fetchFromGitHub, 6 - apple-sdk_11, 7 6 ntpd-rs, 8 7 installShellFiles, 9 8 pandoc, ··· 24 23 }; 25 24 26 25 cargoHash = "sha256-ZB18YbCdJpuu7qTXdHgs2IgDCoc3Hs/aDn4dzXmKI8c="; 27 - 28 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 29 26 30 27 nativeBuildInputs = [ 31 28 pandoc
-6
pkgs/by-name/nu/nufmt/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 fetchFromGitHub, 5 4 rustPlatform, 6 - apple-sdk_11, 7 5 nix-update-script, 8 6 }: 9 7 ··· 20 18 21 19 nativeBuildInputs = [ 22 20 rustPlatform.bindgenHook 23 - ]; 24 - 25 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 26 - apple-sdk_11 27 21 ]; 28 22 29 23 cargoHash = "sha256-MHZlXmHAYIiaB6Isutqjrh45jppRzTZRSE3VqzpFBBA=";
-4
pkgs/by-name/nv/nvc/package.nix
··· 12 12 llvm, 13 13 zlib, 14 14 zstd, 15 - apple-sdk_11, 16 15 }: 17 16 18 17 stdenv.mkDerivation rec { ··· 43 42 ] 44 43 ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform elfutils) [ 45 44 elfutils 46 - ] 47 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 48 - apple-sdk_11 49 45 ]; 50 46 51 47 preConfigure = ''
+1 -2
pkgs/by-name/op/openvi/package.nix
··· 4 4 fetchFromGitHub, 5 5 ncurses, 6 6 perl, 7 - apple-sdk_11, 8 7 }: 9 8 10 9 stdenv.mkDerivation rec { ··· 21 20 buildInputs = [ 22 21 ncurses 23 22 perl 24 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 23 + ]; 25 24 26 25 makeFlags = [ 27 26 "PREFIX=$(out)"
+4 -10
pkgs/by-name/pa/packetry/package.nix
··· 1 1 { 2 2 fetchFromGitHub, 3 3 lib, 4 - stdenv, 5 4 rustPlatform, 6 5 gtk4, 7 6 pkg-config, 8 7 pango, 9 8 wrapGAppsHook4, 10 - apple-sdk_11, 11 9 versionCheckHook, 12 10 }: 13 11 ··· 29 27 wrapGAppsHook4 30 28 ]; 31 29 32 - buildInputs = 33 - [ 34 - gtk4 35 - pango 36 - ] 37 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 38 - apple-sdk_11 39 - ]; 30 + buildInputs = [ 31 + gtk4 32 + pango 33 + ]; 40 34 41 35 # Disable test_replay tests as they need a gui 42 36 preCheck = ''
-5
pkgs/by-name/pi/pizauth/package.nix
··· 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 5 installShellFiles, 6 - apple-sdk_11, 7 - stdenv, 8 6 }: 9 7 10 8 rustPlatform.buildRustPackage rec { ··· 19 17 }; 20 18 21 19 cargoHash = "sha256-moRr8usrFHE8YPQnsmeKoDZPAk94qRm9cHzHBLXtGFM="; 22 - 23 - # pizauth cannot be built with default apple-sdk_10 on x86_64-darwin, pin to 11 24 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 25 20 26 21 nativeBuildInputs = [ installShellFiles ]; 27 22
+9 -13
pkgs/by-name/pr/prismlauncher-unwrapped/package.nix
··· 4 4 fetchFromGitHub, 5 5 cmake, 6 6 cmark, 7 - apple-sdk_11, 8 7 extra-cmake-modules, 9 8 gamemode, 10 9 ghc_filesystem, ··· 57 56 stripJavaArchivesHook 58 57 ]; 59 58 60 - buildInputs = 61 - [ 62 - cmark 63 - ghc_filesystem 64 - kdePackages.qtbase 65 - kdePackages.qtnetworkauth 66 - kdePackages.quazip 67 - tomlplusplus 68 - zlib 69 - ] 70 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ] 71 - ++ lib.optional gamemodeSupport gamemode; 59 + buildInputs = [ 60 + cmark 61 + ghc_filesystem 62 + kdePackages.qtbase 63 + kdePackages.qtnetworkauth 64 + kdePackages.quazip 65 + tomlplusplus 66 + zlib 67 + ] ++ lib.optional gamemodeSupport gamemode; 72 68 73 69 hardeningEnable = lib.optionals stdenv.hostPlatform.isLinux [ "pie" ]; 74 70
+10 -15
pkgs/by-name/pu/pugl/package.nix
··· 15 15 sphinx, 16 16 sphinxygen, 17 17 ninja, 18 - apple-sdk_11, 19 18 }: 20 19 21 20 stdenv.mkDerivation (finalAttrs: { ··· 45 44 python3.pkgs.sphinx-lv2-theme 46 45 ]; 47 46 48 - buildInputs = 49 - [ 50 - xorg.libX11 51 - xorg.libXcursor 52 - xorg.libXrandr 53 - libGL 54 - vulkan-loader 55 - vulkan-headers 56 - xorg.libXext 57 - cairo 58 - ] 59 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 60 - apple-sdk_11 61 - ]; 47 + buildInputs = [ 48 + xorg.libX11 49 + xorg.libXcursor 50 + xorg.libXrandr 51 + libGL 52 + vulkan-loader 53 + vulkan-headers 54 + xorg.libXext 55 + cairo 56 + ]; 62 57 63 58 meta = { 64 59 homepage = "https://github.com/lv2/pugl";
-2
pkgs/by-name/qb/qbittorrent/package.nix
··· 1 1 { 2 - apple-sdk_11, 3 2 boost, 4 3 cmake, 5 4 dbus, ··· 47 46 qt6.qttools 48 47 zlib 49 48 ] 50 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ] 51 49 ++ lib.optionals guiSupport [ dbus ] 52 50 ++ lib.optionals (guiSupport && stdenv.hostPlatform.isLinux) [ qt6.qtwayland ] 53 51 ++ lib.optionals trackerSearch [ python3 ];
+1
pkgs/by-name/qo/qownnotes/package.nix
··· 88 88 maintainers = with maintainers; [ 89 89 pbek 90 90 totoroot 91 + matthiasbeyer 91 92 ]; 92 93 platforms = platforms.unix; 93 94 };
+2 -2
pkgs/by-name/ra/radicale/package.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "radicale"; 10 - version = "3.3.1"; 10 + version = "3.3.3"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Kozea"; 15 15 repo = "Radicale"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-vHg5faXx7ILiI3tpQ38yxF96DzS7EZCSRHfIW9QbI9Q="; 17 + hash = "sha256-KRVByUXiTx5sX7LDgtOlVky8UH5HThaaldvOpeeHd7k="; 18 18 }; 19 19 20 20 build-system = with python3.pkgs; [
+1 -9
pkgs/by-name/rb/rbw/package.nix
··· 6 6 openssl, 7 7 pkg-config, 8 8 installShellFiles, 9 - darwin, 10 9 bash, 11 - apple-sdk_11, 12 10 # rbw-fzf 13 11 withFzf ? false, 14 12 fzf, ··· 39 37 installShellFiles 40 38 ] ++ lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; 41 39 42 - buildInputs = 43 - [ bash ] # for git-credential-rbw 44 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 45 - apple-sdk_11 # Needs _NSPasteboardTypeFileURL, can be removed once x86_64-darwin defaults to a higher SDK 46 - darwin.apple_sdk_11_0.frameworks.Security 47 - darwin.apple_sdk_11_0.frameworks.AppKit 48 - ]; 40 + buildInputs = [ bash ]; # for git-credential-rbw 49 41 50 42 preConfigure = lib.optionalString stdenv.hostPlatform.isLinux '' 51 43 export OPENSSL_INCLUDE_DIR="${openssl.dev}/include"
+1 -3
pkgs/by-name/re/rehex/package.nix
··· 14 14 lua53Packages, 15 15 perlPackages, 16 16 gtk3, 17 - apple-sdk_11, 18 17 }: 19 18 20 19 stdenv.mkDerivation rec { ··· 50 49 perl 51 50 TemplateToolkit 52 51 ]) 53 - ++ lib.optionals stdenv.hostPlatform.isLinux [ gtk3 ] 54 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 52 + ++ lib.optionals stdenv.hostPlatform.isLinux [ gtk3 ]; 55 53 56 54 makeFlags = [ 57 55 "prefix=${placeholder "out"}"
+8 -16
pkgs/by-name/re/rerun/package.nix
··· 19 19 openssl, 20 20 vulkan-loader, 21 21 wayland, 22 - apple-sdk_11, 23 22 24 23 versionCheckHook, 25 24 ··· 63 62 rustfmt 64 63 ]; 65 64 66 - buildInputs = 67 - [ 68 - freetype 69 - glib 70 - gtk3 71 - (lib.getDev openssl) 72 - libxkbcommon 73 - vulkan-loader 74 - ] 75 - ++ lib.optionals stdenv.hostPlatform.isLinux [ (lib.getLib wayland) ] 76 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 77 - # Undefined symbols for architecture x86_64: "_NSAccessibilityTabButtonSubrole" 78 - # ld: symbol(s) not found for architecture x86_64 79 - apple-sdk_11 80 - ]; 65 + buildInputs = [ 66 + freetype 67 + glib 68 + gtk3 69 + (lib.getDev openssl) 70 + libxkbcommon 71 + vulkan-loader 72 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ (lib.getLib wayland) ]; 81 73 82 74 addDlopenRunpaths = map (p: "${lib.getLib p}/lib") ( 83 75 lib.optionals stdenv.hostPlatform.isLinux [
-6
pkgs/by-name/re/rewatch/package.nix
··· 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 5 nix-update-script, 6 - apple-sdk_11, 7 - stdenv, 8 6 }: 9 7 10 8 rustPlatform.buildRustPackage rec { ··· 19 17 }; 20 18 21 19 cargoHash = "sha256-cZTA50gm7o+vBaRNjpZI0LQkXaHIukVTBXoYMUubZgw="; 22 - 23 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 24 - apple-sdk_11 25 - ]; 26 20 27 21 doCheck = true; 28 22
-3
pkgs/by-name/ri/ride/package.nix
··· 12 12 copyDesktopItems, 13 13 makeDesktopItem, 14 14 electron, 15 - apple-sdk_11, 16 15 }: 17 16 18 17 buildNpmPackage rec { ··· 69 68 zip 70 69 makeWrapper 71 70 ] ++ lib.optionals stdenv.hostPlatform.isLinux [ copyDesktopItems ]; 72 - 73 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 74 71 75 72 env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 76 73
-2
pkgs/by-name/ri/rio/package.nix
··· 17 17 libGL, 18 18 vulkan-loader, 19 19 libxkbcommon, 20 - apple-sdk_11, 21 20 22 21 withX11 ? !stdenv.hostPlatform.isDarwin, 23 22 libX11, ··· 81 80 rlinkLibs 82 81 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 83 82 darwin.libutil 84 - apple-sdk_11 # Needs _NSPasteboardTypeFileURL, can be removed once x86_64-darwin defaults to a higher SDK 85 83 ]; 86 84 87 85 outputs = [
+4 -1
pkgs/by-name/ri/rip2/package.nix
··· 43 43 description = "Safe and ergonomic alternative to rm"; 44 44 homepage = "https://github.com/MilesCranmer/rip2"; 45 45 license = lib.licenses.gpl3Plus; 46 - maintainers = with lib.maintainers; [ milescranmer ]; 46 + maintainers = with lib.maintainers; [ 47 + milescranmer 48 + matthiasbeyer 49 + ]; 47 50 mainProgram = "rip"; 48 51 }; 49 52 }
+1 -4
pkgs/by-name/ri/ripgrep/package.nix
··· 6 6 rustPlatform, 7 7 installShellFiles, 8 8 pkg-config, 9 - apple-sdk_11, 10 9 withPCRE2 ? true, 11 10 pcre2, 12 11 }: ··· 29 28 cargoHash = "sha256-b+iA8iTYWlczBpNq9eyHrWG8LMU4WPBzaU6pQRht+yE="; 30 29 31 30 nativeBuildInputs = [ installShellFiles ] ++ lib.optional withPCRE2 pkg-config; 32 - buildInputs = 33 - lib.optional withPCRE2 pcre2 34 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 31 + buildInputs = lib.optional withPCRE2 pcre2; 35 32 36 33 buildFeatures = lib.optional withPCRE2 "pcre2"; 37 34
+3 -10
pkgs/by-name/ru/rucola/package.nix
··· 5 5 pkg-config, 6 6 oniguruma, 7 7 stdenv, 8 - apple-sdk_11, 9 - darwinMinVersionHook, 10 8 }: 11 9 12 10 rustPlatform.buildRustPackage rec { ··· 26 24 pkg-config 27 25 ]; 28 26 29 - buildInputs = 30 - [ 31 - oniguruma 32 - ] 33 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 34 - apple-sdk_11 35 - (darwinMinVersionHook "10.13") 36 - ]; 27 + buildInputs = [ 28 + oniguruma 29 + ]; 37 30 38 31 env = { 39 32 RUSTONIG_SYSTEM_LIBONIG = true;
+78
pkgs/by-name/ru/rundeck/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + makeWrapper, 6 + jdk17, 7 + which, 8 + coreutils, 9 + openssh, 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "rundeck"; 14 + version = "5.8.0-20241205"; 15 + 16 + src = fetchurl { 17 + url = "https://packagecloud.io/pagerduty/rundeck/packages/java/org.rundeck/rundeck-${finalAttrs.version}.war/artifacts/rundeck-${finalAttrs.version}.war/download?distro_version_id=167"; 18 + hash = "sha256-fqmRYzmBteiZjCmBj30J6RLBzgZgwLcFzUKNFIsH2MQ="; 19 + }; 20 + 21 + nativeBuildInputs = [ makeWrapper ]; 22 + buildInputs = [ jdk17 ]; 23 + 24 + dontUnpack = true; 25 + 26 + installPhase = '' 27 + runHook preInstall 28 + 29 + mkdir -p $out/share/rundeck 30 + cp $src $out/share/rundeck/rundeck.war 31 + 32 + mkdir -p $out/bin 33 + # Main rundeck executable 34 + makeWrapper ${lib.getExe jdk17} $out/bin/rundeck \ 35 + --set RDECK_BASE "/var/lib/rundeck" \ 36 + --add-flags "-Xmx4g" \ 37 + --add-flags "-Drdeck.base=/var/lib/rundeck" \ 38 + --add-flags "-Drundeck.config.location=/etc/rundeck" \ 39 + --add-flags "-jar $out/share/rundeck/rundeck.war" \ 40 + --prefix PATH : ${ 41 + lib.makeBinPath [ 42 + which 43 + coreutils 44 + openssh 45 + ] 46 + } 47 + 48 + # Installation helper script 49 + makeWrapper ${lib.getExe jdk17} $out/bin/rundeck-install \ 50 + --set RDECK_BASE "/var/lib/rundeck" \ 51 + --add-flags "-jar $out/share/rundeck/rundeck.war" \ 52 + --add-flags "--installonly" \ 53 + --prefix PATH : ${ 54 + lib.makeBinPath [ 55 + which 56 + coreutils 57 + openssh 58 + ] 59 + } 60 + 61 + runHook postInstall 62 + ''; 63 + 64 + meta = { 65 + description = "Job scheduler and runbook automation"; 66 + longDescription = '' 67 + Rundeck is an open source automation service with a web console, 68 + command line tools and a WebAPI. It lets you easily run automation tasks 69 + across a set of nodes. 70 + ''; 71 + homepage = "https://www.rundeck.com/"; 72 + changelog = "https://docs.rundeck.com/docs/history/"; 73 + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; 74 + license = lib.licenses.asl20; 75 + platforms = lib.platforms.unix; 76 + maintainers = [ lib.maintainers.liberodark ]; 77 + }; 78 + })
-4
pkgs/by-name/sc/scopehal-apps/package.nix
··· 22 22 spirv-tools, 23 23 ffts, 24 24 moltenvk, 25 - apple-sdk_11, 26 - darwinMinVersionHook, 27 25 llvmPackages, 28 26 }: 29 27 ··· 73 71 ] 74 72 ++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ] 75 73 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 76 - apple-sdk_11 77 - (darwinMinVersionHook "10.15") 78 74 moltenvk 79 75 ]; 80 76
+1 -3
pkgs/by-name/sh/shipwright/package.nix
··· 27 27 zenity, 28 28 makeWrapper, 29 29 darwin, 30 - apple-sdk_11, 31 30 libicns, 32 31 }: 33 32 stdenv.mkDerivation (finalAttrs: { ··· 94 93 libXext 95 94 libpulseaudio 96 95 zenity 97 - ] 98 - ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 96 + ]; 99 97 100 98 cmakeFlags = [ 101 99 (lib.cmakeBool "NON_PORTABLE" true)
-6
pkgs/by-name/si/signalbackup-tools/package.nix
··· 6 6 cmake, 7 7 pkg-config, 8 8 9 - apple-sdk_11, 10 - darwinMinVersionHook, 11 9 dbus, 12 10 openssl, 13 11 sqlite, ··· 35 33 sqlite 36 34 ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 37 35 dbus 38 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 39 - # Needed for `utimensat` on `x86_64-darwin` 40 - apple-sdk_11 41 - (darwinMinVersionHook "11.3") 42 36 ]; 43 37 44 38 installPhase = ''
-7
pkgs/by-name/sk/skhd/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - apple-sdk_11, 6 - darwinMinVersionHook, 7 5 nix-update-script, 8 6 versionCheckHook, 9 7 }: ··· 17 15 rev = "v${finalAttrs.version}"; 18 16 hash = "sha256-fnkWws/g4BdHKDRhqoCpdPFUavOHdk8R7h7H1dAdAYI="; 19 17 }; 20 - 21 - buildInputs = [ 22 - apple-sdk_11 23 - (darwinMinVersionHook "10.13") 24 - ]; 25 18 26 19 makeFlags = [ "BUILD_PATH=$(out)/bin" ]; 27 20
+1 -4
pkgs/by-name/sk/skia/package.nix
··· 19 19 , xcbuild 20 20 , cctools 21 21 , zlib 22 - , apple-sdk_11 23 22 , fixDarwinDylibNames 24 23 25 24 , enableVulkan ? !stdenv.hostPlatform.isDarwin ··· 70 69 ] ++ lib.optionals enableVulkan [ 71 70 vulkan-headers 72 71 vulkan-memory-allocator 73 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 74 - apple-sdk_11 # can be removed once x86_64-darwin defaults to a newer SDK 75 - ]; 72 + ] ; 76 73 77 74 gnFlags = let 78 75 cpu = {
+4 -9
pkgs/by-name/sp/spicy-parser-generator/package.nix
··· 8 8 bison, 9 9 flex, 10 10 zlib, 11 - apple-sdk_11, 12 11 }: 13 12 14 13 stdenv.mkDerivation rec { ··· 33 32 python3 34 33 ]; 35 34 36 - buildInputs = 37 - [ 38 - flex 39 - zlib 40 - ] 41 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 42 - apple-sdk_11 43 - ]; 35 + buildInputs = [ 36 + flex 37 + zlib 38 + ]; 44 39 45 40 postPatch = '' 46 41 patchShebangs scripts tests/scripts
-4
pkgs/by-name/sp/spotify-player/package.nix
··· 15 15 dbus, 16 16 fontconfig, 17 17 libsixel, 18 - apple-sdk_11, 19 18 20 19 # build options 21 20 withStreaming ? true, ··· 74 73 openssl 75 74 dbus 76 75 fontconfig 77 - ] 78 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 79 - apple-sdk_11 # can be removed once x86_64-darwin defaults to a newer SDK 80 76 ] 81 77 ++ lib.optionals withSixel [ libsixel ] 82 78 ++ lib.optionals (withAudioBackend == "alsa") [ alsa-lib ]
-9
pkgs/by-name/st/stockfish/package.nix
··· 4 4 fetchurl, 5 5 fetchFromGitHub, 6 6 apple-sdk, 7 - apple-sdk_11, 8 - darwinMinVersionHook, 9 7 }: 10 8 11 9 let ··· 63 61 "CXX=${stdenv.cc.targetPrefix}c++" 64 62 ]; 65 63 buildFlags = [ "build" ]; 66 - 67 - buildInputs = 68 - lib.optionals (stdenv.hostPlatform.isDarwin && lib.versionOlder apple-sdk.version "11") 69 - [ 70 - apple-sdk_11 71 - (darwinMinVersionHook "10.15") 72 - ]; 73 64 74 65 enableParallelBuilding = true; 75 66
+2 -2
pkgs/by-name/ta/taler-challenger/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "taler-challenger"; 24 - version = "0.13.0"; 24 + version = "0.14.1"; 25 25 26 26 src = fetchgit { 27 27 url = "https://git.taler.net/challenger.git"; 28 28 rev = "v${finalAttrs.version}"; 29 - hash = "sha256-OlUgE40Qo7on9VaMGKJ/MRWActDBqPe7Ja95dv1OFhA="; 29 + hash = "sha256-W7oImw5ptrLVIK8KPtmb7PJKSpmh8KsazxV6reUoRO8="; 30 30 }; 31 31 32 32 # https://git.taler.net/challenger.git/tree/bootstrap
+2 -2
pkgs/by-name/ta/taler-exchange/package.nix
··· 22 22 23 23 stdenv.mkDerivation (finalAttrs: { 24 24 pname = "taler-exchange"; 25 - version = "0.13.0"; 25 + version = "0.14.1"; 26 26 27 27 src = fetchgit { 28 28 url = "https://git.taler.net/exchange.git"; 29 29 rev = "v${finalAttrs.version}"; 30 30 fetchSubmodules = true; 31 - hash = "sha256-elVZUuiIMLOG058n+Egpy9oD9T2sLDC4TUCYZTCi0bw="; 31 + hash = "sha256-DD6fX54K1q4f2d/IqC+urVpMkypDRaL3lrBoQieGviI="; 32 32 }; 33 33 34 34 patches = [ ./0001-add-TALER_TEMPLATING_init_path.patch ];
+4 -4
pkgs/by-name/ta/taler-merchant/package.nix
··· 15 15 16 16 stdenv.mkDerivation (finalAttrs: { 17 17 pname = "taler-merchant"; 18 - version = "0.13.0"; 18 + version = "0.14.1"; 19 19 20 20 src = fetchgit { 21 21 url = "https://git.taler.net/merchant.git"; 22 22 rev = "v${finalAttrs.version}"; 23 23 fetchSubmodules = true; 24 - hash = "sha256-N3atOOE21OEks3G1LPOM5qo/kq0D5D9gmTfURCBZx6M="; 24 + hash = "sha256-ac7ajHBLW6BJrL0iaa+b7XNZHMEEmbAo17URIdPSXd8="; 25 25 }; 26 26 27 27 postUnpack = '' ··· 32 32 # path to the `taler-exchange` package is used. 33 33 postPatch = '' 34 34 substituteInPlace src/backend/taler-merchant-httpd.c \ 35 - --replace-fail 'TALER_TEMPLATING_init ("merchant");' "TALER_TEMPLATING_init_path (\"merchant\", \"$out/share/taler\");" 35 + --replace-fail 'TALER_TEMPLATING_init (TALER_MERCHANT_project_data ())' "TALER_TEMPLATING_init_path (\"merchant\", \"$out/share/taler\")" 36 36 37 37 substituteInPlace src/backend/taler-merchant-httpd_spa.c \ 38 38 --replace-fail 'GNUNET_DISK_directory_scan (dn,' "GNUNET_DISK_directory_scan (\"$out/share/taler/merchant/spa/\"," ··· 65 65 # NOTE: The executables that need database access fail to detect the 66 66 # postgresql library in `$out/lib/taler`, so we need to wrap them. 67 67 postInstall = '' 68 - for exec in dbinit httpd webhook wirewatch depositcheck exchange; do 68 + for exec in dbinit httpd webhook wirewatch depositcheck exchangekeyupdate; do 69 69 wrapProgram $out/bin/taler-merchant-$exec \ 70 70 --prefix LD_LIBRARY_PATH : "$out/lib/taler" 71 71 done
+2 -2
pkgs/by-name/ta/taler-sync/package.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "taler-sync"; 22 - version = "0.13.1"; 22 + version = "0.14.1"; 23 23 24 24 src = fetchgit { 25 25 url = "https://git.taler.net/sync.git"; 26 26 rev = "v${finalAttrs.version}"; 27 - hash = "sha256-v5OQVpyTDWYGJrEbnOIDYu0nZlJcMN5AGunfn6G7s20="; 27 + hash = "sha256-v+BBn9GZ+4Zc8iUebGmLtxAQN+7+cTdG8jNOpi+jN2c="; 28 28 }; 29 29 30 30 strictDeps = true;
+3 -3
pkgs/by-name/ta/taler-wallet-core/package.nix
··· 37 37 in 38 38 stdenv.mkDerivation (finalAttrs: { 39 39 pname = "taler-wallet-core"; 40 - version = "0.13.3"; 40 + version = "0.14.1"; 41 41 42 42 src = fetchgit { 43 43 url = "https://git.taler.net/wallet-core.git"; 44 44 rev = "v${finalAttrs.version}"; 45 - hash = "sha256-9pRhaQNnIzbhahMaTVVZqLTlAxh7GZxoz4Gf3TDldAA="; 45 + hash = "sha256-Sae83qGPqVwuxKf30zHCmdOoo5rDPBHKSOE1hxNn7Xo="; 46 46 }; 47 47 48 48 nativeBuildInputs = [ ··· 56 56 57 57 pnpmDeps = pnpm.fetchDeps { 58 58 inherit (finalAttrs) pname version src; 59 - hash = "sha256-+RxTTm5t0/0hLKxhWILzb0qf6aZzbOZJYJenRpX8UdA="; 59 + hash = "sha256-BVVmv0VVvQ2YhL0zOKiM1oVKJKvqwMGNR47DkcCj874="; 60 60 }; 61 61 62 62 buildInputs = [ nodejs ];
+42
pkgs/by-name/ta/tangara-cli/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + 6 + pkg-config, 7 + udev, 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "tangara-cli"; 12 + version = "0.4.3"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "haileys"; 16 + repo = "tangara-companion"; 17 + tag = "v${version}"; 18 + hash = "sha256-pTE+xlXWIOOt1oiKosnbXTCLYoAqP3CfXA283a//Ds0="; 19 + }; 20 + 21 + useFetchCargoVendor = true; 22 + cargoHash = "sha256-C7Q3Oo/aBBH6pW1zSFQ2nD07+wu8uXfRSwNif2pVlW0="; 23 + 24 + nativeBuildInputs = [ 25 + pkg-config 26 + ]; 27 + 28 + buildInputs = [ 29 + udev 30 + ]; 31 + 32 + buildAndTestSubdir = "crates/tangara-cli"; 33 + 34 + meta = { 35 + description = "Command-line tool for managing the Cool Tech Zone Tangara"; 36 + mainProgram = "tangara"; 37 + homepage = "https://github.com/haileys/tangara-companion"; 38 + license = lib.licenses.gpl3Plus; 39 + maintainers = with lib.maintainers; [ stevestreza ]; 40 + platforms = lib.platforms.linux; 41 + }; 42 + }
-1
pkgs/by-name/ta/taterclient-ddnet/package.nix
··· 28 28 spirv-tools, 29 29 gtest, 30 30 glew, 31 - apple-sdk_11, 32 31 }: 33 32 let 34 33 clientExecutable = "TaterClient-DDNet";
-3
pkgs/by-name/td/tdb/package.nix
··· 7 7 , readline 8 8 , libxslt 9 9 , libxcrypt 10 - , apple-sdk_11 11 10 , docbook-xsl-nons 12 11 , docbook_xml_dtd_45 13 12 }: ··· 34 33 python3 35 34 readline # required to build python 36 35 libxcrypt 37 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 38 - apple-sdk_11 39 36 ]; 40 37 41 38 # otherwise the configure script fails with
-4
pkgs/by-name/te/tealdeer/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 rustPlatform, 5 4 fetchFromGitHub, 6 5 installShellFiles, 7 - apple-sdk_11, 8 6 }: 9 7 10 8 rustPlatform.buildRustPackage rec { ··· 19 17 }; 20 18 21 19 cargoHash = "sha256-ZKaq/JqH/Y2Cs9LLnlt1Gawe4R+kvS3vpUcNK95uujk="; 22 - 23 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 24 20 25 21 nativeBuildInputs = [ installShellFiles ]; 26 22
+4 -4
pkgs/by-name/ti/tigerbeetle/package.nix
··· 10 10 platform = 11 11 if stdenvNoCC.hostPlatform.isDarwin then "universal-macos" else stdenvNoCC.hostPlatform.system; 12 12 hash = builtins.getAttr platform { 13 - "universal-macos" = "sha256-S5XeCgJaJxD6zaoWi2aIPl1chZPfQPvmeSLBvimMp9s="; 14 - "x86_64-linux" = "sha256-BLPrhDzbEy/EjNexJ6jXKH7sIGDVzzL01Fbs60jyoCQ="; 15 - "aarch64-linux" = "sha256-aG1fxb2BObP8ftcxyO2MyL7JsinyzoXtJ2Ha0FqDG6Y="; 13 + "universal-macos" = "sha256-xuj14E2JVcyAJ8TrLdZ42X19x3E94SSDC4VqrvQD6Lo="; 14 + "x86_64-linux" = "sha256-M6OCtktN6GnHpIMYNeEvB4K6uHR/+KDq2ByMBPcstQw="; 15 + "aarch64-linux" = "sha256-WxO1A2bVMEv5k7yFkeUy06BZy8vVnykSXs+6GN6VIGA="; 16 16 }; 17 17 in 18 18 stdenvNoCC.mkDerivation (finalAttrs: { 19 19 pname = "tigerbeetle"; 20 - version = "0.16.19"; 20 + version = "0.16.20"; 21 21 22 22 src = fetchzip { 23 23 url = "https://github.com/tigerbeetle/tigerbeetle/releases/download/${finalAttrs.version}/tigerbeetle-${platform}.zip";
+10 -18
pkgs/by-name/to/ton/package.nix
··· 14 14 secp256k1, 15 15 zlib, 16 16 nix-update-script, 17 - darwinMinVersionHook, 18 - apple-sdk_11, 19 17 }: 20 18 21 19 stdenv.mkDerivation rec { ··· 41 39 pkg-config 42 40 ]; 43 41 44 - buildInputs = 45 - [ 46 - gperf 47 - libmicrohttpd 48 - libsodium 49 - lz4 50 - openssl 51 - readline 52 - secp256k1 53 - zlib 54 - ] 55 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 56 - # error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer 57 - (darwinMinVersionHook "10.13") 58 - apple-sdk_11 59 - ]; 42 + buildInputs = [ 43 + gperf 44 + libmicrohttpd 45 + libsodium 46 + lz4 47 + openssl 48 + readline 49 + secp256k1 50 + zlib 51 + ]; 60 52 61 53 passthru.updateScript = nix-update-script { }; 62 54
+3 -3
pkgs/by-name/tu/tuifimanager/package.nix
··· 21 21 python3.pkgs.buildPythonApplication 22 22 rec { 23 23 pname = "tuifimanager"; 24 - version = "5.0.5"; 24 + version = "5.0.9"; 25 25 26 26 pyproject = true; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "GiorgosXou"; 30 30 repo = "TUIFIManager"; 31 - rev = "v.${version}"; 32 - hash = "sha256-KwyRGNT3o/Ww+szBI+MmMMw5ZaSPT+G3xJIw5g9iBKo="; 31 + tag = "v.${version}"; 32 + hash = "sha256-15PXua3kLf3Mpgft2msFBn+fS2bzfTAIC9bmOkNKqlU="; 33 33 }; 34 34 35 35 build-system = with python3.pkgs; [
+1 -2
pkgs/by-name/tu/turbo-unwrapped/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - apple-sdk_11, 5 4 capnproto, 6 5 extra-cmake-modules, 7 6 fetchFromGitHub, ··· 45 44 openssl 46 45 rust-jemalloc-sys 47 46 zlib 48 - ] ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 47 + ]; 49 48 50 49 cargoBuildFlags = [ 51 50 "--package"
+3 -3
pkgs/by-name/uv/uv/package.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "uv"; 20 - version = "0.5.13"; 20 + version = "0.5.14"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "astral-sh"; 24 24 repo = "uv"; 25 25 tag = version; 26 - hash = "sha256-W24bw+fQk7DoHPGFtUiIPybxuCa03o1ngAXqVwU/Z7E="; 26 + hash = "sha256-/IUVdOcQwBKfuNlQozdaVe3TzdXptpADXGk27XLF+xc="; 27 27 }; 28 28 29 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-CN4ZqYeZktcQT0Pro8rfnzri6i0xranmYdroKzwkK6A="; 30 + cargoHash = "sha256-dkVyLfihJIfhGrETY0BAHrB4h6JiwL+kfsyP2nwqLN4="; 31 31 32 32 nativeBuildInputs = [ 33 33 cmake
+1 -2
pkgs/by-name/vc/vcpkg-tool/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 runtimeShell, 6 - apple-sdk_11, 7 6 cacert, 8 7 cmake, 9 8 cmakerc, ··· 42 41 buildInputs = [ 43 42 cmakerc 44 43 fmt 45 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 44 + ]; 46 45 47 46 patches = [ 48 47 ./change-lock-location.patch
+2 -2
pkgs/by-name/vg/vgmstream/package.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "vgmstream"; 21 - version = "1951"; 21 + version = "1980"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "vgmstream"; 25 25 repo = "vgmstream"; 26 26 rev = "refs/tags/r${version}"; 27 - hash = "sha256-Wa0FAUHdJtG+u9y3ZOt8dxRIo78lekFPghiu67KJZ9s="; 27 + hash = "sha256-TmaWC04XbtFfBYhmTO4ouh3NoByio1BCpDJGJy3r0NY="; 28 28 }; 29 29 30 30 passthru.updateScript = nix-update-script {
-4
pkgs/by-name/vi/vimv-rs/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchCrate, 5 - stdenv, 6 - apple-sdk_11, 7 5 }: 8 6 9 7 rustPlatform.buildRustPackage rec { ··· 17 15 }; 18 16 19 17 cargoHash = "sha256-rYQxIttuGBGEkYkFtSBl8ce1I/Akm6FxeITJcaIeP6M="; 20 - 21 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 22 18 23 19 meta = with lib; { 24 20 description = "Command line utility for batch-renaming files";
+2 -2
pkgs/by-name/wh/where-is-my-sddm-theme/package.nix
··· 34 34 stdenvNoCC.mkDerivation 35 35 (finalAttrs: { 36 36 pname = "where-is-my-sddm-theme"; 37 - version = "1.11.0"; 37 + version = "1.12.0"; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "stepanzubkov"; 41 41 repo = "where-is-my-sddm-theme"; 42 42 rev = "refs/tags/v${finalAttrs.version}"; 43 - hash = "sha256-EzO+MTz1PMmgeKyw65aasetmjUCpvilcvePt6HJZrpo="; 43 + hash = "sha256-+R0PX84SL2qH8rZMfk3tqkhGWPR6DpY1LgX9bifNYCg="; 44 44 }; 45 45 46 46 propagatedUserEnvPkgs =
-6
pkgs/by-name/ws/wstunnel/package.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 rustPlatform, 5 - stdenv, 6 5 nixosTests, 7 6 nix-update-script, 8 7 versionCheckHook, 9 - apple-sdk_11, 10 8 }: 11 9 12 10 let ··· 28 26 cargoHash = "sha256-iKGt+CjshkUE5w68ZJ9x2+3mAYQJO/oDMs/M8ARL5Po="; 29 27 30 28 nativeBuildInputs = [ versionCheckHook ]; 31 - 32 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 33 - apple-sdk_11 34 - ]; 35 29 36 30 doInstallCheck = true; 37 31
+1
pkgs/by-name/ze/zellij/package.nix
··· 89 89 _0x4A6F 90 90 abbe 91 91 pyrox0 92 + matthiasbeyer 92 93 ]; 93 94 mainProgram = "zellij"; 94 95 };
-3
pkgs/by-name/zl/zls/package.nix
··· 4 4 fetchFromGitHub, 5 5 zig_0_13, 6 6 callPackage, 7 - apple-sdk_11, 8 7 }: 9 8 10 9 stdenv.mkDerivation (finalAttrs: { ··· 24 23 ]; 25 24 26 25 nativeBuildInputs = [ zig_0_13.hook ]; 27 - 28 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 29 26 30 27 postPatch = '' 31 28 ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p
-3
pkgs/by-name/zo/zon2nix/package.nix
··· 4 4 fetchFromGitHub, 5 5 zig_0_11, 6 6 nix, 7 - apple-sdk_11, 8 7 }: 9 8 10 9 stdenv.mkDerivation rec { ··· 21 20 nativeBuildInputs = [ 22 21 zig_0_11.hook 23 22 ]; 24 - 25 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 26 23 27 24 zigBuildFlags = [ 28 25 "-Dnix=${lib.getExe nix}"
-3
pkgs/by-name/zt/ztags/package.nix
··· 4 4 fetchFromGitHub, 5 5 scdoc, 6 6 zig_0_13, 7 - apple-sdk_11, 8 7 }: 9 8 10 9 let ··· 25 24 scdoc 26 25 zig.hook 27 26 ]; 28 - 29 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]; 30 27 31 28 postInstall = '' 32 29 zig build docs --prefix $out
+12 -3
pkgs/desktops/xfce/core/exo/default.nix
··· 1 - { lib, mkXfceDerivation, docbook_xsl, glib, libxslt, gtk3 2 - , libxfce4ui, libxfce4util, perl }: 1 + { 2 + lib, 3 + mkXfceDerivation, 4 + docbook_xsl, 5 + glib, 6 + libxslt, 7 + gtk3, 8 + libxfce4ui, 9 + libxfce4util, 10 + perl, 11 + }: 3 12 4 13 mkXfceDerivation { 5 14 category = "xfce"; ··· 11 20 nativeBuildInputs = [ 12 21 libxslt 13 22 docbook_xsl 23 + perl 14 24 ]; 15 25 16 26 buildInputs = [ ··· 18 28 glib 19 29 libxfce4ui 20 30 libxfce4util 21 - (perl.withPackages(ps: with ps; [ URI ])) # for $out/lib/xfce4/exo/exo-compose-mail 22 31 ]; 23 32 24 33 meta = with lib; {
+2
pkgs/desktops/xfce/core/libxfce4ui/default.nix
··· 2 2 mkXfceDerivation, 3 3 lib, 4 4 gobject-introspection, 5 + perl, 5 6 vala, 6 7 libICE, 7 8 libSM, ··· 23 24 24 25 nativeBuildInputs = [ 25 26 gobject-introspection 27 + perl 26 28 vala 27 29 ]; 28 30
+2 -2
pkgs/desktops/xfce/core/thunar/default.nix
··· 23 23 let unwrapped = mkXfceDerivation { 24 24 category = "xfce"; 25 25 pname = "thunar"; 26 - version = "4.20.0"; 26 + version = "4.20.1"; 27 27 28 - sha256 = "sha256-TCroFesFD0IKGdfuootd1BwEsWVECE2XQfUovJqPEh0="; 28 + sha256 = "sha256-+Iz9tkP8foEtor1HFBB1/fyMXdLm3mXCoP9j9bug8po="; 29 29 30 30 nativeBuildInputs = [ 31 31 docbook_xsl
+2
pkgs/desktops/xfce/core/xfce4-panel/default.nix
··· 11 11 , libxfce4ui 12 12 , libxfce4util 13 13 , libxfce4windowing 14 + , perl 14 15 , tzdata 15 16 , vala 16 17 , wayland ··· 26 27 27 28 nativeBuildInputs = [ 28 29 gobject-introspection 30 + perl 29 31 vala 30 32 ]; 31 33
+15 -6
pkgs/desktops/xfce/core/xfconf/default.nix
··· 1 - { lib 2 - , mkXfceDerivation 3 - , libxfce4util 4 - , gobject-introspection 5 - , vala 1 + { 2 + lib, 3 + mkXfceDerivation, 4 + gobject-introspection, 5 + perl, 6 + vala, 7 + libxfce4util, 8 + glib, 6 9 }: 7 10 8 11 mkXfceDerivation { ··· 12 15 13 16 sha256 = "sha256-U+Sk7ubBr1ZD1GLQXlxrx0NQdhV/WpVBbnLcc94Tjcw="; 14 17 15 - nativeBuildInputs = [ gobject-introspection vala ]; 18 + nativeBuildInputs = [ 19 + gobject-introspection 20 + perl 21 + vala 22 + ]; 16 23 17 24 buildInputs = [ libxfce4util ]; 25 + 26 + propagatedBuildInputs = [ glib ]; 18 27 19 28 meta = with lib; { 20 29 description = "Simple client-server configuration storage and query system for Xfce";
+4 -2
pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin/default.nix
··· 4 4 vala, 5 5 glib, 6 6 gtk3, 7 + gtksourceview4, 7 8 libxfce4ui, 8 9 libxfce4util, 9 10 xfce4-panel, ··· 13 14 mkXfceDerivation { 14 15 category = "panel-plugins"; 15 16 pname = "xfce4-notes-plugin"; 16 - version = "1.11.0"; 17 - sha256 = "sha256-hAGgJIZaUjrizuriW2yX4uOKqRxpZ6BiUhnj4u3BOBA="; 17 + version = "1.11.1"; 18 + sha256 = "sha256-LeKQCsnHVataTP0rYn09x0Ddx8lMtVC0WW/jje7yXag="; 18 19 odd-unstable = false; 19 20 20 21 nativeBuildInputs = [ ··· 24 25 buildInputs = [ 25 26 glib 26 27 gtk3 28 + gtksourceview4 27 29 libxfce4ui 28 30 libxfce4util 29 31 xfce4-panel
+10 -4
pkgs/desktops/xfce/panel-plugins/xfce4-windowck-plugin/default.nix
··· 2 2 stdenv, 3 3 lib, 4 4 fetchurl, 5 - intltool, 5 + gettext, 6 6 pkg-config, 7 + glib, 8 + gtk3, 7 9 libwnck, 8 10 libxfce4ui, 11 + libxfce4util, 9 12 xfce4-panel, 10 13 xfconf, 11 14 gitUpdater, ··· 13 16 14 17 stdenv.mkDerivation rec { 15 18 pname = "xfce4-windowck-plugin"; 16 - version = "0.5.1"; 19 + version = "0.5.2"; 17 20 18 21 src = fetchurl { 19 22 # Use dist tarballs to avoid pulling extra deps and generating images ourselves. 20 23 url = "mirror://xfce/src/panel-plugins/xfce4-windowck-plugin/${lib.versions.majorMinor version}/xfce4-windowck-plugin-${version}.tar.bz2"; 21 - sha256 = "sha256-p4FEi3gemE072lmw2qsNGE1M7CJSMW9zcKxKmO/kgfQ="; 24 + sha256 = "sha256-3E7V3JS9Bd5UlUQfDKuyYKs+H2ziex+skuN/kJwM/go="; 22 25 }; 23 26 24 27 nativeBuildInputs = [ 25 - intltool 28 + gettext 26 29 pkg-config 27 30 ]; 28 31 29 32 buildInputs = [ 33 + glib 34 + gtk3 30 35 libwnck 31 36 libxfce4ui 37 + libxfce4util 32 38 xfce4-panel 33 39 xfconf 34 40 ];
+2 -2
pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin/default.nix
··· 16 16 mkXfceDerivation { 17 17 category = "panel-plugins"; 18 18 pname = "xfce4-xkb-plugin"; 19 - version = "0.8.3"; 20 - sha256 = "sha256-qWxjULrBpueQS3gxwRg49cQ3ovlQ8iWvYZ6Z/THm+/s="; 19 + version = "0.8.5"; 20 + sha256 = "sha256-oG3+OudjJIXfGII16bYaIGy4QMno00HX3kX+8H0VUcU="; 21 21 22 22 buildInputs = [ 23 23 garcon
+2 -4
pkgs/desktops/xfce/thunar-plugins/archive/default.nix
··· 5 5 thunar, 6 6 exo, 7 7 libxfce4util, 8 - intltool, 9 8 gettext, 10 9 }: 11 10 12 11 mkXfceDerivation { 13 12 category = "thunar-plugins"; 14 13 pname = "thunar-archive-plugin"; 15 - version = "0.5.2"; 14 + version = "0.5.3"; 16 15 odd-unstable = false; 17 16 18 - sha256 = "sha256-vbuFosj2qxDus7vu9WfRiFpLwnTRnmLVGCDa0tNQecU="; 17 + sha256 = "sha256-9EjEQml/Xdj/jCtC4ZuGdmpeNnOqUWJOqoVzLuxzG6s="; 19 18 20 19 nativeBuildInputs = [ 21 - intltool 22 20 gettext 23 21 ]; 24 22
+2 -4
pkgs/desktops/xfce/thunar-plugins/media-tags/default.nix
··· 5 5 gtk3, 6 6 thunar, 7 7 libxfce4util, 8 - intltool, 9 8 gettext, 10 9 taglib, 11 10 }: ··· 13 12 mkXfceDerivation { 14 13 category = "thunar-plugins"; 15 14 pname = "thunar-media-tags-plugin"; 16 - version = "0.4.0"; 15 + version = "0.5.0"; 17 16 odd-unstable = false; 18 17 19 - sha256 = "sha256-2WA7EtDmNl8XP0wK00iyQcSqV3mnfHNJZTKhBJ/YWPQ="; 18 + sha256 = "sha256-71YBA1deR8aV8hoZ4F0TP+Q5sdcVQAB9n3B+pcpJMSQ="; 20 19 21 20 nativeBuildInputs = [ 22 - intltool 23 21 gettext 24 22 ]; 25 23
+3 -3
pkgs/development/python-modules/ancp-bids/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "ancp-bids"; 15 - version = "0.2.5"; 15 + version = "0.2.6"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 src = fetchFromGitHub { 22 22 owner = "ANCPLabOldenburg"; 23 23 repo = pname; 24 - rev = "refs/tags/${version}"; 25 - hash = "sha256-bfHphFecPHKoVow8v+20LuQt6X1BGGtoTK4T9vhIkSc="; 24 + tag = version; 25 + hash = "sha256-JxF1W4yMPFIQXPH7QHfcHssWMP/Uci07e66WE5qVJx4="; 26 26 }; 27 27 28 28 build-system = [ setuptools ];
+9 -7
pkgs/development/python-modules/dcmstack/default.nix
··· 4 4 fetchFromGitHub, 5 5 nibabel, 6 6 pydicom, 7 - pylibjpeg-libjpeg, 7 + pylibjpeg, 8 + pint, 8 9 pytestCheckHook, 9 10 pythonOlder, 10 11 setuptools, 11 12 }: 12 13 13 - buildPythonPackage rec { 14 + buildPythonPackage { 14 15 pname = "dcmstack"; 15 - version = "0.9"; 16 + version = "0.9-unstable-2024-12-05"; 16 17 pyproject = true; 17 18 18 - disabled = pythonOlder "3.7"; 19 + disabled = pythonOlder "3.8"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "moloney"; 22 23 repo = "dcmstack"; 23 - rev = "refs/tags/v${version}"; 24 - hash = "sha256-GVzih9H2m2ZGSuZMRuaDG78b95PI3j0WQw5M3l4KNCs="; 24 + rev = "68575996c8956152865e3598b15f621d7c803a96"; 25 + hash = "sha256-QXnBtlXkxYDJFdjiqCoEuBMcHnq+87YmHX8j5EPW7HU="; 25 26 }; 26 27 27 28 build-system = [ setuptools ]; ··· 29 30 dependencies = [ 30 31 nibabel 31 32 pydicom 32 - pylibjpeg-libjpeg 33 + pylibjpeg 34 + pint 33 35 ]; 34 36 35 37 nativeCheckInputs = [ pytestCheckHook ];
+10
pkgs/development/python-modules/dicom-numpy/default.nix
··· 4 4 fetchFromGitHub, 5 5 pythonOlder, 6 6 pytestCheckHook, 7 + setuptools, 7 8 numpy, 8 9 pydicom, 9 10 }: ··· 21 22 rev = "refs/tags/v${version}"; 22 23 hash = "sha256-pgmREQlstr0GY2ThIWt4hbcSWmaNWgkr2gO4PSgGHqE="; 23 24 }; 25 + 26 + postPatch = '' 27 + substituteInPlace dicom_numpy/zip_archive.py \ 28 + --replace-fail "pydicom.read_file" "pydicom.dcmread" 29 + ''; 30 + 31 + build-system = [ 32 + setuptools 33 + ]; 24 34 25 35 propagatedBuildInputs = [ 26 36 numpy
+2
pkgs/development/python-modules/heudiconv/default.nix
··· 8 8 fetchPypi, 9 9 filelock, 10 10 git, 11 + git-annex, 11 12 nibabel, 12 13 nipype, 13 14 pydicom, ··· 53 54 dcm2niix 54 55 pytestCheckHook 55 56 git 57 + git-annex 56 58 ]; 57 59 58 60 preCheck = ''
+3 -3
pkgs/development/python-modules/iottycloud/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "iottycloud"; 13 - version = "0.2.1"; 13 + version = "0.3.0"; 14 14 pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "pburgio"; 18 18 repo = "iottyCloud"; 19 - rev = "refs/tags/v${version}"; 19 + rev = "refs/tags/${version}"; 20 20 hash = "sha256-EtAAUyVL7FTn0VoGmU5bU9XouMuEQUOx2t6j/wd1OEo="; 21 21 }; 22 22 ··· 32 32 ]; 33 33 34 34 meta = { 35 - changelog = "https://github.com/pburgio/iottyCloud/releases/tag/v${version}"; 35 + changelog = "https://github.com/pburgio/iottyCloud/releases/tag/${version}"; 36 36 description = "Python library to interact with iotty CloudApi"; 37 37 homepage = "https://github.com/pburgio/iottyCloud"; 38 38 license = lib.licenses.agpl3Only;
+52
pkgs/development/python-modules/mkdocs-git-committers-plugin-2/default.nix
··· 1 + { 2 + # Evaluation 3 + lib, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + pythonOlder, 7 + 8 + # Build 9 + setuptools, 10 + 11 + # Dependencies 12 + gitpython, 13 + mkdocs, 14 + requests, 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "mkdocs-git-committers-plugin-2"; 19 + version = "2.4.1"; 20 + pyproject = true; 21 + 22 + disabled = pythonOlder "3.8"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "ojacques"; 26 + repo = "mkdocs-git-committers-plugin-2"; 27 + rev = "refs/tags/${version}"; 28 + hash = "sha256-hKt0K5gOkdUDwTlyMTwodl4gD1RD+s+CM+zEpngSnlc="; 29 + }; 30 + 31 + build-system = [ 32 + setuptools 33 + ]; 34 + 35 + dependencies = [ 36 + gitpython 37 + mkdocs 38 + requests 39 + ]; 40 + 41 + # Upstream has no tests 42 + doCheck = false; 43 + pythonImportsCheck = [ "mkdocs_git_committers_plugin_2" ]; 44 + 45 + meta = { 46 + description = "MkDocs plugin for displaying a list of contributors on each page"; 47 + homepage = "https://github.com/ojacques/mkdocs-git-committers-plugin-2"; 48 + changelog = "https://github.com/ojacques/mkdocs-git-committers-plugin-2/releases/tag/${version}"; 49 + license = lib.licenses.mit; 50 + maintainers = with lib.maintainers; [ mahtaran ]; 51 + }; 52 + }
+7 -5
pkgs/development/python-modules/nipy/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 4 + fetchFromGitHub, 5 5 6 6 # build-system 7 7 cython, ··· 24 24 }: 25 25 26 26 buildPythonPackage rec { 27 - version = "0.6.0"; 27 + version = "0.6.1"; 28 28 pname = "nipy"; 29 29 pyproject = true; 30 30 31 - src = fetchPypi { 32 - inherit pname version; 33 - hash = "sha256-BTn2nV4VMeT8bxTOJTHjRU8I2bxFZCzIZCZVn/QcUrk="; 31 + src = fetchFromGitHub { 32 + owner = "nipy"; 33 + repo = "nipy"; 34 + tag = version; 35 + hash = "sha256-KGMGu0/0n1CzN++ri3Ig1AJjeZfkl4KzNgm6jdwXB7o="; 34 36 }; 35 37 36 38 postPatch = ''
+6 -6
pkgs/development/python-modules/pynetdicom/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - poetry-core, 5 + flit-core, 6 6 pydicom, 7 7 pyfakefs, 8 8 pytestCheckHook, ··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pynetdicom"; 16 - version = "2.1.1"; 16 + version = "2.1.1-unstable-2024-12-22"; 17 17 pyproject = true; 18 18 19 - disabled = pythonOlder "3.7"; 19 + disabled = pythonOlder "3.10"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "pydicom"; 23 23 repo = "pynetdicom"; 24 - rev = "refs/tags/v${version}"; 25 - hash = "sha256-cEe0/mzmMnPoLQMx5AsJocGxCUVE512k9KlEmjzjzn4="; 24 + rev = "c22be4b79a20eea0f176340629b37c6e30dd10b2"; 25 + hash = "sha256-ydNFlSR/h9xJcJxHyRLpLfkaQwJABPt9PJMkPEWzf3s="; 26 26 }; 27 27 28 - build-system = [ poetry-core ]; 28 + build-system = [ flit-core ]; 29 29 30 30 dependencies = [ pydicom ]; 31 31
+2 -2
pkgs/development/python-modules/python-gitlab/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "python-gitlab"; 16 - version = "4.12.2"; 16 + version = "5.3.0"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 21 21 src = fetchPypi { 22 22 pname = "python_gitlab"; 23 23 inherit version; 24 - hash = "sha256-jBQKJgOtjv9/yrbz+qv1/Iuquo3vEl6zCaMtaqOiOlY="; 24 + hash = "sha256-GPEHZLasFK0MtSUu1mAlvf5ijOdHsau7z+dqgirGuuc="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/xsdata/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "xsdata"; 22 - version = "24.11"; 22 + version = "24.12"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "tefra"; 29 29 repo = "xsdata"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-hyNC9VcWkGnOYm6BpXgH3RzmHTqBVmQoADvcEvgF6yg="; 31 + hash = "sha256-ARq7QNwEtnXo0Q04CNWf3bAwyjl92YnFUp/Y51sgsLU="; 32 32 }; 33 33 34 34 patches = [
+1 -1
pkgs/development/tools/rust/cargo-asm/default.nix
··· 29 29 description = "Display the assembly or LLVM-IR generated for Rust source code"; 30 30 homepage = "https://github.com/gnzlbg/cargo-asm"; 31 31 license = licenses.mit; 32 - maintainers = [ ]; 32 + maintainers = with maintainers; [ matthiasbeyer ]; 33 33 }; 34 34 }
+4 -1
pkgs/development/tools/rust/cargo-c/default.nix
··· 64 64 homepage = "https://github.com/lu-zero/cargo-c"; 65 65 changelog = "https://github.com/lu-zero/cargo-c/releases/tag/v${version}"; 66 66 license = licenses.mit; 67 - maintainers = with maintainers; [ cpu ]; 67 + maintainers = with maintainers; [ 68 + cpu 69 + matthiasbeyer 70 + ]; 68 71 }; 69 72 }
+1
pkgs/development/tools/rust/cargo-edit/default.nix
··· 49 49 gerschtli 50 50 jb55 51 51 killercup 52 + matthiasbeyer 52 53 ]; 53 54 }; 54 55 }
+1
pkgs/development/tools/rust/cargo-lambda/default.nix
··· 66 66 maintainers = with maintainers; [ 67 67 taylor1791 68 68 calavera 69 + matthiasbeyer 69 70 ]; 70 71 }; 71 72 }
+5 -14
pkgs/development/tools/rust/cargo-msrv/default.nix pkgs/by-name/ca/cargo-msrv/package.nix
··· 6 6 rustup, 7 7 openssl, 8 8 stdenv, 9 - libiconv, 10 - Security, 11 9 makeWrapper, 12 10 gitUpdater, 13 11 }: 14 12 15 13 rustPlatform.buildRustPackage rec { 16 14 pname = "cargo-msrv"; 17 - version = "0.16.2"; 15 + version = "0.17.1"; 18 16 19 17 src = fetchFromGitHub { 20 18 owner = "foresterre"; 21 19 repo = pname; 22 - rev = "v${version}"; 23 - sha256 = "sha256-pgSwyq5KK9PCsmMnquufaw2oW7VSm93xRmozi/uqzNc="; 20 + tag = "v${version}"; 21 + sha256 = "sha256-cRdnx9K+EkVEKtPxQk+gXK6nkgkpWhpYij/5e7pFzMU="; 24 22 }; 25 23 26 - cargoHash = "sha256-4eGoNKv76+3QVRUbTPiqTiLbQoOX6mVouJ3puxN6pMY="; 24 + cargoHash = "sha256-Hs/bdDpJFQ0w+Ds2L5at06Sw3F+5bXu5HU798gR9/9Q="; 27 25 28 26 passthru = { 29 27 updateScript = gitUpdater { ··· 35 33 # Integration tests fail 36 34 doCheck = false; 37 35 38 - buildInputs = 39 - if stdenv.hostPlatform.isDarwin then 40 - [ 41 - libiconv 42 - Security 43 - ] 44 - else 45 - [ openssl ]; 36 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]; 46 37 47 38 nativeBuildInputs = [ 48 39 pkg-config
+4 -1
pkgs/development/tools/rust/cargo-pgrx/default.nix
··· 48 48 homepage = "https://github.com/pgcentralfoundation/pgrx"; 49 49 changelog = "https://github.com/pgcentralfoundation/pgrx/releases/tag/v${version}"; 50 50 license = licenses.mit; 51 - maintainers = with maintainers; [ happysalada ]; 51 + maintainers = with maintainers; [ 52 + happysalada 53 + matthiasbeyer 54 + ]; 52 55 mainProgram = "cargo-pgrx"; 53 56 }; 54 57 };
+1
pkgs/development/tools/rust/cargo-vet/default.nix
··· 37 37 maintainers = with maintainers; [ 38 38 figsoda 39 39 jk 40 + matthiasbeyer 40 41 ]; 41 42 }; 42 43 }
-4
pkgs/games/ddnet/default.nix
··· 8 8 pkg-config, 9 9 rustPlatform, 10 10 rustc, 11 - apple-sdk_11, 12 11 curl, 13 12 freetype, 14 13 libGLU, ··· 86 85 ] 87 86 ++ lib.optionals stdenv.hostPlatform.isLinux [ 88 87 libX11 89 - ] 90 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 91 - apple-sdk_11 92 88 ] 93 89 ); 94 90
+31
pkgs/servers/home-assistant/custom-components/frigidaire/package.nix
··· 1 + { 2 + lib, 3 + buildHomeAssistantComponent, 4 + fetchFromGitHub, 5 + frigidaire, 6 + }: 7 + buildHomeAssistantComponent rec { 8 + owner = "bm1549"; 9 + domain = "frigidaire"; 10 + version = "0.1.1"; 11 + 12 + src = fetchFromGitHub { 13 + inherit owner; 14 + repo = "home-assistant-frigidaire"; 15 + tag = version; 16 + hash = "sha256-Jynm0e5y/mSgyd5Pyus+nIVV3XSjsm5z+oNuGIhCu9s="; 17 + }; 18 + 19 + dependencies = [ frigidaire ]; 20 + 21 + # NOTE: The manifest.json specifies an exact version requirement for the 22 + # frigidaire dependency 23 + ignoreVersionRequirement = [ "frigidaire" ]; 24 + 25 + meta = { 26 + description = "Custom component for the Frigidaire integration"; 27 + homepage = "https://github.com/bm1549/home-assistant-frigidaire"; 28 + maintainers = with lib.maintainers; [ nullcube ]; 29 + license = lib.licenses.mit; 30 + }; 31 + }
-4
pkgs/servers/search/meilisearch/default.nix
··· 1 1 { 2 - stdenv, 3 2 lib, 4 3 rustPlatform, 5 4 fetchFromGitHub, 6 - apple-sdk_11, 7 5 nixosTests, 8 6 nix-update-script, 9 7 }: ··· 37 35 buildNoDefaultFeatures = true; 38 36 39 37 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 40 - 41 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11; 42 38 43 39 passthru = { 44 40 updateScript = nix-update-script { };
-2
pkgs/tools/system/btop/default.nix
··· 7 7 removeReferencesTo, 8 8 autoAddDriverRunpath, 9 9 apple-sdk_15, 10 - darwinMinVersionHook, 11 10 versionCheckHook, 12 11 rocmPackages, 13 12 cudaSupport ? config.cudaSupport, ··· 35 34 36 35 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 37 36 apple-sdk_15 38 - (darwinMinVersionHook "10.15") 39 37 ]; 40 38 41 39 installFlags = [ "PREFIX=$(out)" ];
+1
pkgs/top-level/aliases.nix
··· 256 256 cudaPackages_10_2 = throw "CUDA 10.2 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20 257 257 cudaPackages_10 = throw "CUDA 10 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20 258 258 cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12 259 + cutemarked-ng = throw "'cutemarked-ng' has been removed due to lack of maintenance upstream. Consider using 'kdePackages.ghostwriter' instead"; # Added 2024-12-27 259 260 cvs_fast_export = throw "'cvs_fast_export' has been renamed to/replaced by 'cvs-fast-export'"; # Converted to throw 2024-10-17 260 261 261 262 # these are for convenience, not for backward compat and shouldn't expire
-11
pkgs/top-level/all-packages.nix
··· 2190 2190 2191 2191 csvtool = callPackage ../development/ocaml-modules/csv/csvtool.nix { }; 2192 2192 2193 - cutemarked-ng = libsForQt5.callPackage ../applications/office/cutemarked-ng { }; 2194 - 2195 2193 dataclass-wizard = with python3Packages; toPythonApplication dataclass-wizard; 2196 2194 2197 2195 datasette = with python3Packages; toPythonApplication datasette; ··· 6798 6796 cargo-lambda = callPackage ../development/tools/rust/cargo-lambda { 6799 6797 zig = buildPackages.zig_0_12; 6800 6798 inherit (darwin.apple_sdk.frameworks) CoreServices Security; 6801 - }; 6802 - cargo-msrv = callPackage ../development/tools/rust/cargo-msrv { 6803 - inherit (darwin.apple_sdk.frameworks) Security; 6804 6799 }; 6805 6800 cargo-ndk = callPackage ../development/tools/rust/cargo-ndk { 6806 6801 inherit (darwin.apple_sdk.frameworks) CoreGraphics Foundation; ··· 14578 14573 moc = callPackage ../applications/audio/moc { 14579 14574 inherit (darwin.apple_sdk.frameworks) CoreServices; 14580 14575 }; 14581 - 14582 - xmrig = darwin.apple_sdk_11_0.callPackage ../applications/misc/xmrig { }; 14583 - 14584 - xmrig-mo = darwin.apple_sdk_11_0.callPackage ../applications/misc/xmrig/moneroocean.nix { }; 14585 - 14586 - xmrig-proxy = darwin.apple_sdk_11_0.callPackage ../applications/misc/xmrig/proxy.nix { }; 14587 14576 14588 14577 monotone = callPackage ../applications/version-management/monotone { 14589 14578 lua = lua5;
+2
pkgs/top-level/python-packages.nix
··· 8254 8254 8255 8255 mkdocs-git-authors-plugin = callPackage ../development/python-modules/mkdocs-git-authors-plugin { }; 8256 8256 8257 + mkdocs-git-committers-plugin-2 = callPackage ../development/python-modules/mkdocs-git-committers-plugin-2 { }; 8258 + 8257 8259 mkdocs-git-revision-date-localized-plugin = callPackage ../development/python-modules/mkdocs-git-revision-date-localized-plugin { }; 8258 8260 8259 8261 mkdocs-gitlab = callPackage ../development/python-modules/mkdocs-gitlab-plugin { };