From 900df250350fd51c101a92efdde6b222b2c8d228 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu+github@posteo.de> Date: Wed, 18 Oct 2023 17:26:25 +0200 Subject: gummy: 0.3 -> 0.5.4 --- pkgs/tools/misc/gummy/cmake_no_fetch.patch | 24 ++++++++++++++++++++ pkgs/tools/misc/gummy/default.nix | 35 +++++++++++++++++++++++++----- 2 files changed, 54 insertions(+), 5 deletions(-) create mode 100644 pkgs/tools/misc/gummy/cmake_no_fetch.patch (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/gummy/cmake_no_fetch.patch b/pkgs/tools/misc/gummy/cmake_no_fetch.patch new file mode 100644 index 0000000000000..3791c4801b850 --- /dev/null +++ b/pkgs/tools/misc/gummy/cmake_no_fetch.patch @@ -0,0 +1,24 @@ +--- a/CMakeLists.txt 2023-10-18 17:14:06.368938573 +0200 ++++ b/CMakeLists.txt 2023-10-18 17:16:54.361334970 +0200 +@@ -9,17 +9,16 @@ + set(SPDLOG_FMT_EXTERNAL ON) + + FetchContent_Declare(json +- URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz ++ SOURCE_DIR @nlohmann_json_src@ + ) + FetchContent_Declare(fmt +- URL https://github.com/fmtlib/fmt/releases/download/9.1.0/fmt-9.1.0.zip ++ SOURCE_DIR @fmt_src@ + ) + FetchContent_Declare(spdlog +- URL https://github.com/gabime/spdlog/archive/refs/tags/v1.11.0.tar.gz ++ SOURCE_DIR @spdlog_src@ + ) + FetchContent_Declare(cli11 +- GIT_REPOSITORY https://github.com/CLIUtils/CLI11 +- GIT_TAG 291c58789c031208f08f4f261a858b5b7083e8e2 #v2.3.2 ++ SOURCE_DIR @cli11_src@ + ) + FetchContent_MakeAvailable( + json diff --git a/pkgs/tools/misc/gummy/default.nix b/pkgs/tools/misc/gummy/default.nix index 9d5b473c3b9c4..bc0f9f1a426a7 100644 --- a/pkgs/tools/misc/gummy/default.nix +++ b/pkgs/tools/misc/gummy/default.nix @@ -1,6 +1,7 @@ { lib , stdenv , fetchFromGitHub +, substituteAll , testers , gummy , cmake @@ -8,18 +9,24 @@ , libXext , sdbus-cpp , udev +, xcbutilimage , coreutils +, cli11 +, ddcutil +, fmt +, nlohmann_json +, spdlog }: stdenv.mkDerivation rec { pname = "gummy"; - version = "0.3"; + version = "0.5.4"; src = fetchFromGitHub { owner = "fushko"; repo = "gummy"; rev = version; - sha256 = "sha256-dw2yOXTS61OIe+NOq8MPydhkZvTit13eC7cbL5nFseg="; + sha256 = "sha256-cRYmBeHvTpw+cwAZzw5qjMRFPINRa7xRXixZzPKwE84="; }; nativeBuildInputs = [ @@ -27,25 +34,43 @@ stdenv.mkDerivation rec { ]; buildInputs = [ + cli11 + ddcutil + fmt libX11 libXext + nlohmann_json sdbus-cpp + spdlog udev + xcbutilimage ]; cmakeFlags = [ "-DUDEV_DIR=${placeholder "out"}/lib/udev" + "-DUDEV_RULES_DIR=${placeholder "out"}/lib/udev/rules.d" + ]; + + patches = [ + # prevent CMake from trying to get libraries on the Internet + (substituteAll { + src = ./cmake_no_fetch.patch; + nlohmann_json_src = nlohmann_json.src; + fmt_src = fmt.src; + spdlog_src = spdlog.src; + cli11_src = cli11.src; + }) ]; # Fixes the "gummy start" command, without this it cannot find the binary. # Setting this through cmake does not seem to work. postPatch = '' - substituteInPlace src/gummy/gummy.cpp \ + substituteInPlace gummy/gummyd/gummyd/api.cpp \ --replace "CMAKE_INSTALL_DAEMON_PATH" "\"${placeholder "out"}/libexec/gummyd\"" ''; preFixup = '' - substituteInPlace $out/lib/udev/99-gummy.rules \ + substituteInPlace $out/lib/udev/rules.d/99-gummy.rules \ --replace "/bin/chmod" "${coreutils}/bin/chmod" ln -s $out/libexec/gummyd $out/bin/gummyd @@ -61,6 +86,6 @@ stdenv.mkDerivation rec { via backlight (currently only for embedded displays) and gamma. Multiple monitors are supported. ''; license = licenses.gpl3Only; - maintainers = [ maintainers.ivar ]; + maintainers = with maintainers; [ ivar ]; }; } -- cgit 1.4.1 From f2f833d852ac4dd587a88c6c1f46a037920c9255 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu+github@posteo.de> Date: Sun, 21 Apr 2024 16:13:38 +0200 Subject: gummy: 0.5.4 -> 0.6.0 --- pkgs/tools/misc/gummy/cmake_no_fetch.patch | 24 ------------------------ pkgs/tools/misc/gummy/default.nix | 26 ++++++++------------------ 2 files changed, 8 insertions(+), 42 deletions(-) delete mode 100644 pkgs/tools/misc/gummy/cmake_no_fetch.patch (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/gummy/cmake_no_fetch.patch b/pkgs/tools/misc/gummy/cmake_no_fetch.patch deleted file mode 100644 index 3791c4801b850..0000000000000 --- a/pkgs/tools/misc/gummy/cmake_no_fetch.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/CMakeLists.txt 2023-10-18 17:14:06.368938573 +0200 -+++ b/CMakeLists.txt 2023-10-18 17:16:54.361334970 +0200 -@@ -9,17 +9,16 @@ - set(SPDLOG_FMT_EXTERNAL ON) - - FetchContent_Declare(json -- URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz -+ SOURCE_DIR @nlohmann_json_src@ - ) - FetchContent_Declare(fmt -- URL https://github.com/fmtlib/fmt/releases/download/9.1.0/fmt-9.1.0.zip -+ SOURCE_DIR @fmt_src@ - ) - FetchContent_Declare(spdlog -- URL https://github.com/gabime/spdlog/archive/refs/tags/v1.11.0.tar.gz -+ SOURCE_DIR @spdlog_src@ - ) - FetchContent_Declare(cli11 -- GIT_REPOSITORY https://github.com/CLIUtils/CLI11 -- GIT_TAG 291c58789c031208f08f4f261a858b5b7083e8e2 #v2.3.2 -+ SOURCE_DIR @cli11_src@ - ) - FetchContent_MakeAvailable( - json diff --git a/pkgs/tools/misc/gummy/default.nix b/pkgs/tools/misc/gummy/default.nix index bc0f9f1a426a7..192c1e3261a56 100644 --- a/pkgs/tools/misc/gummy/default.nix +++ b/pkgs/tools/misc/gummy/default.nix @@ -1,6 +1,6 @@ { lib , stdenv -, fetchFromGitHub +, fetchFromGitea , substituteAll , testers , gummy @@ -20,13 +20,14 @@ stdenv.mkDerivation rec { pname = "gummy"; - version = "0.5.4"; + version = "0.6.0"; - src = fetchFromGitHub { - owner = "fushko"; + src = fetchFromGitea { + domain = "codeberg.org"; + owner = "fusco"; repo = "gummy"; rev = version; - sha256 = "sha256-cRYmBeHvTpw+cwAZzw5qjMRFPINRa7xRXixZzPKwE84="; + hash = "sha256-kATieFf+dEpcYgSEPoETacP7R+u2dOrg7rOhIkNQ1uE="; }; nativeBuildInputs = [ @@ -51,21 +52,10 @@ stdenv.mkDerivation rec { "-DUDEV_RULES_DIR=${placeholder "out"}/lib/udev/rules.d" ]; - patches = [ - # prevent CMake from trying to get libraries on the Internet - (substituteAll { - src = ./cmake_no_fetch.patch; - nlohmann_json_src = nlohmann_json.src; - fmt_src = fmt.src; - spdlog_src = spdlog.src; - cli11_src = cli11.src; - }) - ]; - # Fixes the "gummy start" command, without this it cannot find the binary. # Setting this through cmake does not seem to work. postPatch = '' - substituteInPlace gummy/gummyd/gummyd/api.cpp \ + substituteInPlace gummyd/gummyd/api.cpp \ --replace "CMAKE_INSTALL_DAEMON_PATH" "\"${placeholder "out"}/libexec/gummyd\"" ''; @@ -79,7 +69,7 @@ stdenv.mkDerivation rec { passthru.tests.version = testers.testVersion { package = gummy; }; meta = with lib; { - homepage = "https://github.com/Fushko/gummy"; + homepage = "https://codeberg.org/fusco/gummy"; description = "Brightness and temperature manager for X11"; longDescription = '' CLI screen manager for X11 that allows automatic and manual brightness/temperature adjustments, -- cgit 1.4.1 From a456465e6b3fd7356c5efad300a11ecf542630ef Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 15 Apr 2024 16:48:18 +0200 Subject: yubico-piv-tool: add meta.pkgConfigModules, passthru.tests.pkg-config --- pkgs/tools/misc/yubico-piv-tool/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/yubico-piv-tool/default.nix b/pkgs/tools/misc/yubico-piv-tool/default.nix index 2b8e50a7222e3..c45bebccaf849 100644 --- a/pkgs/tools/misc/yubico-piv-tool/default.nix +++ b/pkgs/tools/misc/yubico-piv-tool/default.nix @@ -60,9 +60,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { extraArgs = [ "--version-regex" "yubico-piv-tool-([0-9.]+)$" ]; }; - tests.version = testers.testVersion { - package = finalAttrs.finalPackage; - command = "yubico-piv-tool --version"; + tests = { + pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; + version = testers.testVersion { + package = finalAttrs.finalPackage; + command = "yubico-piv-tool --version"; + }; }; }; @@ -84,5 +87,6 @@ stdenv.mkDerivation (finalAttrs: { platforms = platforms.all; maintainers = with maintainers; [ viraptor anthonyroussel ]; mainProgram = "yubico-piv-tool"; + pkgConfigModules = [ "ykcs11" "ykpiv" ]; }; }) -- cgit 1.4.1 From 3801a6e450de7b086e2e60cdeda8a04e334b9c06 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 15 Apr 2024 16:49:05 +0200 Subject: yubico-piv-tool: remove `with lib;`, use `--replace-fail` --- pkgs/tools/misc/yubico-piv-tool/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/yubico-piv-tool/default.nix b/pkgs/tools/misc/yubico-piv-tool/default.nix index c45bebccaf849..01f1e969891f8 100644 --- a/pkgs/tools/misc/yubico-piv-tool/default.nix +++ b/pkgs/tools/misc/yubico-piv-tool/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: { }; postPatch = '' - substituteInPlace CMakeLists.txt --replace "-Werror" "" + substituteInPlace CMakeLists.txt --replace-fail "-Werror" "" ''; nativeBuildInputs = [ @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://developers.yubico.com/yubico-piv-tool/"; changelog = "https://developers.yubico.com/yubico-piv-tool/Release_Notes.html"; description = '' @@ -83,9 +83,9 @@ stdenv.mkDerivation (finalAttrs: { certificates, and create certificate requests, and other operations. A shared library and a command-line tool is included. ''; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ viraptor anthonyroussel ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ viraptor anthonyroussel ]; mainProgram = "yubico-piv-tool"; pkgConfigModules = [ "ykcs11" "ykpiv" ]; }; -- cgit 1.4.1 From e4d2291c0e5d781de277e578bbb7c051ef0c3eba Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 15 Apr 2024 16:51:17 +0200 Subject: yubico-piv-tool: move check to nativeCheckInputs --- pkgs/tools/misc/yubico-piv-tool/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/yubico-piv-tool/default.nix b/pkgs/tools/misc/yubico-piv-tool/default.nix index 01f1e969891f8..2901fe3318945 100644 --- a/pkgs/tools/misc/yubico-piv-tool/default.nix +++ b/pkgs/tools/misc/yubico-piv-tool/default.nix @@ -41,7 +41,6 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ openssl - check zlib.dev ] ++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]); @@ -56,6 +55,10 @@ stdenv.mkDerivation (finalAttrs: { configureFlags = [ "--with-backend=${if withApplePCSC then "macscard" else "pcsc"}" ]; + doCheck = true; + + nativeCheckInputs = [ check ]; + passthru = { updateScript = nix-update-script { extraArgs = [ "--version-regex" "yubico-piv-tool-([0-9.]+)$" ]; -- cgit 1.4.1 From ecb29e46676b21fa3dcd5ce6779b15cb32ce202c Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Tue, 7 May 2024 15:40:10 +0200 Subject: yubico-piv-tool: use lib.cmakeFeature, lib.cmakeBool --- pkgs/tools/misc/yubico-piv-tool/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/yubico-piv-tool/default.nix b/pkgs/tools/misc/yubico-piv-tool/default.nix index 2901fe3318945..d573a43c422e1 100644 --- a/pkgs/tools/misc/yubico-piv-tool/default.nix +++ b/pkgs/tools/misc/yubico-piv-tool/default.nix @@ -10,9 +10,9 @@ , help2man , cmake , zlib -, withApplePCSC ? stdenv.isDarwin , nix-update-script , testers +, withApplePCSC ? stdenv.isDarwin }: stdenv.mkDerivation (finalAttrs: { @@ -46,15 +46,14 @@ stdenv.mkDerivation (finalAttrs: { ++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]); cmakeFlags = [ - "-DGENERATE_MAN_PAGES=ON" - "-DCMAKE_INSTALL_BINDIR=bin" - "-DCMAKE_INSTALL_INCLUDEDIR=include" - "-DCMAKE_INSTALL_MANDIR=share/man" - "-DCMAKE_INSTALL_LIBDIR=lib" + (lib.cmakeBool "GENERATE_MAN_PAGES" true) + (lib.cmakeFeature "BACKEND" (if withApplePCSC then "macscard" else "pcsc")) + (lib.cmakeFeature "CMAKE_INSTALL_BINDIR" "bin") + (lib.cmakeFeature "CMAKE_INSTALL_INCLUDEDIR" "include") + (lib.cmakeFeature "CMAKE_INSTALL_LIBDIR" "lib") + (lib.cmakeFeature "CMAKE_INSTALL_MANDIR" "share/man") ]; - configureFlags = [ "--with-backend=${if withApplePCSC then "macscard" else "pcsc"}" ]; - doCheck = true; nativeCheckInputs = [ check ]; -- cgit 1.4.1 From 94c4ee134a59c1a8b1fa224bb994a8a15bc20fad Mon Sep 17 00:00:00 2001 From: Matthias Thym Date: Mon, 17 Jun 2024 10:28:51 +0200 Subject: google-cloud-sql-proxy: 2.9.0 -> 2.11.4 --- pkgs/tools/misc/google-cloud-sql-proxy/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/google-cloud-sql-proxy/default.nix b/pkgs/tools/misc/google-cloud-sql-proxy/default.nix index 3bf76cc5bf3c6..b9a68b60dbd3e 100644 --- a/pkgs/tools/misc/google-cloud-sql-proxy/default.nix +++ b/pkgs/tools/misc/google-cloud-sql-proxy/default.nix @@ -1,22 +1,22 @@ { lib -, buildGo122Module +, buildGoModule , fetchFromGitHub }: -buildGo122Module rec { +buildGoModule rec { pname = "google-cloud-sql-proxy"; - version = "2.9.0"; + version = "2.11.4"; src = fetchFromGitHub { owner = "GoogleCloudPlatform"; repo = "cloud-sql-proxy"; rev = "v${version}"; - hash = "sha256-V1Q6DFWSIIff2FuOyE5XwtJN8RObGlhpW/nMWFmNoxI="; + hash = "sha256-eM1sS9+L3Z7qCQl+HPcdfoSSdcCKvaz5zwQM4k55hZY="; }; subPackages = [ "." ]; - vendorHash = "sha256-sAVMmDeHXEgQXb/Xi4nXYztXjuykE0TFebkeubMTZ3k="; + vendorHash = "sha256-/cHQ1vElE+QCxQo6s3Isf2USFP0LWJH3YdcbUfGuuVw="; checkFlags = [ "-short" -- cgit 1.4.1 From 36959a99339d47b95ab5a0f55361f868755ce795 Mon Sep 17 00:00:00 2001 From: Miguel Madrid-Mencía Date: Wed, 19 Jun 2024 18:51:33 +0200 Subject: dotter: 0.13.1 -> 0.13.2 Co-authored-by: linsui --- pkgs/tools/misc/dotter/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/dotter/default.nix b/pkgs/tools/misc/dotter/default.nix index 48d89dd86b339..ec8232ffc0fd6 100644 --- a/pkgs/tools/misc/dotter/default.nix +++ b/pkgs/tools/misc/dotter/default.nix @@ -5,29 +5,38 @@ , rustPlatform , CoreServices , which +, installShellFiles }: rustPlatform.buildRustPackage rec { pname = "dotter"; - version = "0.13.1"; + version = "0.13.2"; src = fetchFromGitHub { owner = "SuperCuber"; repo = "dotter"; rev = "v${version}"; - hash = "sha256-Xmdg5ITKWhL5AxTS7z4f9ecigQpBqna+kZclA+mDJhA="; + hash = "sha256-IV3wvmRiRtzu5UhIlL1BnL8hy+fQHQA9Mfiy6dIsjdw="; }; - cargoHash = "sha256-W8khm9E5f/PROVJDAUr57nAiTEXV4a0fepzV00HoT8c="; + cargoHash = "sha256-jNHq1cH3I29b6LIoO2ApLDTYzFGGSua1lACvYCBpbQQ="; buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; - nativeCheckInputs = [ which ]; + nativeCheckInputs = [ which installShellFiles ]; + + postInstall = '' + installShellCompletion --cmd dotter \ + --bash <($out/bin/dotter gen-completions --shell bash) \ + --fish <($out/bin/dotter gen-completions --shell fish) \ + --zsh <($out/bin/dotter gen-completions --shell zsh) + ''; passthru = { updateScript = nix-update-script { }; }; + meta = with lib; { description = "Dotfile manager and templater written in rust 🦀"; homepage = "https://github.com/SuperCuber/dotter"; -- cgit 1.4.1 From 40b36c4710e26cf60f3849e1ee8df1137af35787 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Jun 2024 22:40:02 +0000 Subject: fend: 1.4.8 -> 1.4.9 --- pkgs/tools/misc/fend/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/fend/default.nix b/pkgs/tools/misc/fend/default.nix index 2e7c22672330c..6986bc69645a8 100644 --- a/pkgs/tools/misc/fend/default.nix +++ b/pkgs/tools/misc/fend/default.nix @@ -18,16 +18,16 @@ rustPlatform.buildRustPackage rec { pname = "fend"; - version = "1.4.8"; + version = "1.4.9"; src = fetchFromGitHub { owner = "printfn"; repo = "fend"; rev = "v${version}"; - hash = "sha256-i4h2QYgA1XX+qHOEH07PR3G/0SSA8a413vm9T39TuYQ="; + hash = "sha256-ZfDoDOHQlvuPSX6OWQOX7HdeSVUfAlOpHVwcNPDEeU8="; }; - cargoHash = "sha256-EhumvDwXNXB0Vp3qWkJs0y0gEwiy3Z9/3KZ92YDTlqk="; + cargoHash = "sha256-Xwf3Mxvso9mb1YYTuKMzLhtJNX5b2dmGi05TZ111cMc="; nativeBuildInputs = [ pandoc installShellFiles pkg-config copyDesktopItems ]; buildInputs = [ pkg-config openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; -- cgit 1.4.1 From 381010a62705d8413a843ba765b2e589b0fed39a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Jun 2024 00:18:30 +0000 Subject: eget: 1.3.3 -> 1.3.4 --- pkgs/tools/misc/eget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/eget/default.nix b/pkgs/tools/misc/eget/default.nix index 1bf2b7f10110e..89aa759741ae8 100644 --- a/pkgs/tools/misc/eget/default.nix +++ b/pkgs/tools/misc/eget/default.nix @@ -10,13 +10,13 @@ buildGoModule rec { pname = "eget"; - version = "1.3.3"; + version = "1.3.4"; src = fetchFromGitHub { owner = "zyedidia"; repo = pname; rev = "v${version}"; - sha256 = "sha256-OOqfZ2uS3sYBH9xrlQN1iSNdNE9RGi6qiDXfPgf2aB0="; + sha256 = "sha256-jhVUYyp6t5LleVotQQme07IJVdVnIOVFFtKEmzt8e2k="; }; vendorHash = "sha256-A3lZtV0pXh4KxINl413xGbw2Pz7OzvIQiFSRubH428c="; -- cgit 1.4.1 From 9d7c1959abca501a31d94a9a4a6cae7594f241c4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Jun 2024 10:54:25 +0000 Subject: sensible-utils: 0.0.18 -> 0.0.23 --- pkgs/tools/misc/sensible-utils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/sensible-utils/default.nix b/pkgs/tools/misc/sensible-utils/default.nix index 0335a0756401f..4584de1f8fdda 100644 --- a/pkgs/tools/misc/sensible-utils/default.nix +++ b/pkgs/tools/misc/sensible-utils/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "sensible-utils"; - version = "0.0.18"; + version = "0.0.23"; src = fetchFromGitLab { domain = "salsa.debian.org"; owner = "debian"; repo = "sensible-utils"; rev = "debian/${version}"; - sha256 = "sha256-fZJKPnEkPfo/3luUcHzAmGB2k1nkA4ATEQMSz0aN0YY="; + sha256 = "sha256-EiWrMDVfauCBHmpJOoJFWOdigtDiNc5DzDoeyWhke9k="; }; nativeBuildInputs = [ makeWrapper ]; -- cgit 1.4.1 From 4d7f0c66d3742703a9505c528d9e885eb2daa8f2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Jun 2024 12:35:31 +0000 Subject: cyberchef: 10.18.8 -> 10.19.0 --- pkgs/tools/misc/cyberchef/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/cyberchef/default.nix b/pkgs/tools/misc/cyberchef/default.nix index db888fccbf9bc..c8e57c208982d 100644 --- a/pkgs/tools/misc/cyberchef/default.nix +++ b/pkgs/tools/misc/cyberchef/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { pname = "cyberchef"; - version = "10.18.8"; + version = "10.19.0"; src = fetchzip { url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip"; - sha256 = "sha256-1Ta0fgrwBHfUlj7aJkiAHV7MmHRlXJloYt2P889ya+U="; + sha256 = "sha256-jhT1HcAXNRBNgZcRv6yYZ8xTIHo5EUe71KpAgUx8FCU="; stripRoot = false; }; -- cgit 1.4.1 From 9aafa2ee3bd4772618d00fa9c80be0124bd1e05b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 21 Jun 2024 12:50:05 +0000 Subject: phrase-cli: 2.28.0 -> 2.28.1 --- pkgs/tools/misc/phrase-cli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/phrase-cli/default.nix b/pkgs/tools/misc/phrase-cli/default.nix index fa262ec1e583c..7cd0a3cabcba9 100644 --- a/pkgs/tools/misc/phrase-cli/default.nix +++ b/pkgs/tools/misc/phrase-cli/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "phrase-cli"; - version = "2.28.0"; + version = "2.28.1"; src = fetchFromGitHub { owner = "phrase"; repo = "phrase-cli"; rev = version; - sha256 = "sha256-jaGCNWbq/CDxJXiGqueM1mj86K26Eyr0ND08Pt0IEj0="; + sha256 = "sha256-pGh1OorNF2fe5rKkszQc2PadrrN/Kpx0+7E5fJERYpQ="; }; - vendorHash = "sha256-MwwIzgOmEUcTxdlJWKZU8A4fH3efuNIeS/mFceBYBY0="; + vendorHash = "sha256-lXgTi6hYDBK1QGw8RQoNIHIlmyHPM6z8RYAmbW7N42s="; ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; -- cgit 1.4.1 From 05b6d3fedb50a0b954ea4c1af7d08aacb09c1436 Mon Sep 17 00:00:00 2001 From: amesgen Date: Sat, 22 Jun 2024 13:30:37 +0200 Subject: gh-dash: 4.1.2 -> 4.2.0 --- pkgs/tools/misc/gh-dash/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/gh-dash/default.nix b/pkgs/tools/misc/gh-dash/default.nix index 91de04a0565d1..aa65da648166c 100644 --- a/pkgs/tools/misc/gh-dash/default.nix +++ b/pkgs/tools/misc/gh-dash/default.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "gh-dash"; - version = "4.1.2"; + version = "4.2.0"; src = fetchFromGitHub { owner = "dlvhdr"; repo = "gh-dash"; rev = "v${version}"; - hash = "sha256-crMlld0Lrfy/MPjQd071azRpvdII8aC2nbSRxBxYu+U="; + hash = "sha256-9aXGNLaNXzDGJVTAXhOPt8XNxnWUpmiXCa60jsIUja8="; }; vendorHash = "sha256-JOd2czYWVgE1jBfeuoVRp+oE/asyk50o5Pf021jD5mY="; @@ -21,7 +21,7 @@ buildGoModule rec { ldflags = [ "-s" "-w" - "-X github.com/dlvhdr/gh-dash/cmd.Version=${version}" + "-X github.com/dlvhdr/gh-dash/v4/cmd.Version=${version}" ]; passthru.tests = { -- cgit 1.4.1 From 7e1ff7bd737691d877911fef537ccbf1713b6542 Mon Sep 17 00:00:00 2001 From: "P." Date: Sat, 22 Jun 2024 07:03:16 -0600 Subject: treewide: remove wolfangaukang as maintainer --- nixos/modules/services/security/sslmate-agent.nix | 2 +- pkgs/applications/audio/pocket-casts/default.nix | 2 +- pkgs/applications/editors/lifeograph/default.nix | 2 +- pkgs/applications/editors/thiefmd/default.nix | 2 +- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- pkgs/applications/graphics/pixeluvo/default.nix | 2 +- pkgs/applications/misc/cobang/default.nix | 2 +- pkgs/applications/misc/firefly-desktop/default.nix | 2 +- pkgs/applications/misc/mobilecoin-wallet/default.nix | 2 +- pkgs/applications/misc/thedesk/default.nix | 2 +- pkgs/applications/misc/upwork/default.nix | 2 +- pkgs/applications/misc/whalebird/default.nix | 2 +- pkgs/applications/networking/instant-messengers/alfaview/default.nix | 2 +- .../networking/instant-messengers/threema-desktop/default.nix | 2 +- pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix | 2 +- pkgs/applications/networking/newsreaders/raven-reader/default.nix | 2 +- pkgs/applications/networking/protonvpn-cli/default.nix | 2 +- pkgs/applications/networking/protonvpn-gui/default.nix | 2 +- pkgs/applications/networking/protonvpn-gui/legacy.nix | 2 +- pkgs/applications/office/clockify/default.nix | 2 +- pkgs/applications/office/morgen/default.nix | 2 +- pkgs/by-name/se/serverless/package.nix | 2 +- pkgs/by-name/we/weasis/package.nix | 2 +- pkgs/development/libraries/imgui/default.nix | 1 - pkgs/development/python-modules/arnparse/default.nix | 2 +- pkgs/development/python-modules/certomancer/default.nix | 2 +- pkgs/development/python-modules/chacha20poly1305/default.nix | 2 +- pkgs/development/python-modules/deep-translator/default.nix | 2 +- pkgs/development/python-modules/fleep/default.nix | 2 +- pkgs/development/python-modules/gaphas/default.nix | 2 +- pkgs/development/python-modules/generic/default.nix | 2 +- pkgs/development/python-modules/ilua/default.nix | 2 +- pkgs/development/python-modules/keyboard/default.nix | 2 +- pkgs/development/python-modules/kiss-headers/default.nix | 2 +- pkgs/development/python-modules/proton-client/default.nix | 2 +- pkgs/development/python-modules/proton-core/default.nix | 2 +- .../python-modules/proton-keyring-linux-secretservice/default.nix | 2 +- pkgs/development/python-modules/proton-keyring-linux/default.nix | 2 +- pkgs/development/python-modules/proton-vpn-api-core/default.nix | 2 +- pkgs/development/python-modules/proton-vpn-connection/default.nix | 2 +- .../python-modules/proton-vpn-killswitch-network-manager/default.nix | 2 +- pkgs/development/python-modules/proton-vpn-killswitch/default.nix | 2 +- pkgs/development/python-modules/proton-vpn-logger/default.nix | 2 +- .../python-modules/proton-vpn-network-manager-openvpn/default.nix | 2 +- .../development/python-modules/proton-vpn-network-manager/default.nix | 2 +- pkgs/development/python-modules/proton-vpn-session/default.nix | 2 +- pkgs/development/python-modules/protonvpn-nm-lib/default.nix | 2 +- pkgs/development/python-modules/pyhanko-certvalidator/default.nix | 2 +- pkgs/development/python-modules/pyhanko/default.nix | 2 +- pkgs/development/python-modules/python-barcode/default.nix | 2 +- pkgs/development/python-modules/python-pae/default.nix | 2 +- pkgs/development/python-modules/python-trovo/default.nix | 2 +- pkgs/development/python-modules/python-zbar/default.nix | 2 +- pkgs/development/python-modules/single-version/default.nix | 2 +- pkgs/development/python-modules/twitchapi/default.nix | 1 - pkgs/development/python-modules/txzmq/default.nix | 2 +- pkgs/development/tools/cfn-nag/default.nix | 2 +- pkgs/development/tools/ejs/default.nix | 2 +- pkgs/development/tools/language-servers/perlnavigator/default.nix | 2 +- .../tools/language-servers/yaml-language-server/default.nix | 2 +- pkgs/development/tools/license_finder/default.nix | 2 +- pkgs/development/tools/sslmate-agent/default.nix | 2 +- pkgs/games/rare/default.nix | 2 +- pkgs/tools/misc/gaphor/default.nix | 2 +- pkgs/tools/misc/ttchat/default.nix | 2 +- pkgs/tools/networking/cloudflare-warp/default.nix | 1 - pkgs/tools/networking/opendrop/default.nix | 2 +- pkgs/tools/networking/owl/default.nix | 2 +- pkgs/tools/security/buttercup-desktop/default.nix | 2 +- pkgs/tools/security/pass2csv/default.nix | 2 +- pkgs/tools/security/whatweb/default.nix | 2 +- pkgs/tools/text/bashblog/default.nix | 2 +- pkgs/tools/virtualization/ovftool/default.nix | 2 +- 73 files changed, 71 insertions(+), 74 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/nixos/modules/services/security/sslmate-agent.nix b/nixos/modules/services/security/sslmate-agent.nix index c850eb22a0311..57cb955a39dd9 100644 --- a/nixos/modules/services/security/sslmate-agent.nix +++ b/nixos/modules/services/security/sslmate-agent.nix @@ -6,7 +6,7 @@ let cfg = config.services.sslmate-agent; in { - meta.maintainers = with maintainers; [ wolfangaukang ]; + meta.maintainers = [ ]; options = { services.sslmate-agent = { diff --git a/pkgs/applications/audio/pocket-casts/default.nix b/pkgs/applications/audio/pocket-casts/default.nix index e07904b32485c..8777f0bb54028 100644 --- a/pkgs/applications/audio/pocket-casts/default.nix +++ b/pkgs/applications/audio/pocket-casts/default.nix @@ -52,7 +52,7 @@ buildNpmPackage rec { description = "Pocket Casts webapp, packaged for the Linux Desktop"; homepage = "https://github.com/felicianotech/pocket-casts-desktop-app"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "pocket-casts"; platforms = platforms.linux; }; diff --git a/pkgs/applications/editors/lifeograph/default.nix b/pkgs/applications/editors/lifeograph/default.nix index 52e12beb317aa..0501d25c51c92 100644 --- a/pkgs/applications/editors/lifeograph/default.nix +++ b/pkgs/applications/editors/lifeograph/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { homepage = "https://lifeograph.sourceforge.net/wiki/Main_Page"; description = "Lifeograph is an off-line and private journal and note taking application"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "lifeograph"; platforms = platforms.linux; }; diff --git a/pkgs/applications/editors/thiefmd/default.nix b/pkgs/applications/editors/thiefmd/default.nix index d603981302342..59e28a75ad138 100644 --- a/pkgs/applications/editors/thiefmd/default.nix +++ b/pkgs/applications/editors/thiefmd/default.nix @@ -66,6 +66,6 @@ stdenv.mkDerivation rec { mainProgram = "com.github.kmwallio.thiefmd"; license = licenses.gpl3Only; platforms = platforms.linux; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index b4e0a91941302..94d77cf65efdb 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -2721,7 +2721,7 @@ let description = "CloudFormation Linter IDE integration, autocompletion, and documentation"; homepage = "https://github.com/aws-cloudformation/cfn-lint-visual-studio-code"; license = lib.licenses.asl20; - maintainers = [ lib.maintainers.wolfangaukang ]; + maintainers = [ ]; }; }; @@ -4731,7 +4731,7 @@ let }; meta = { license = lib.licenses.mit; - maintainers = [ lib.maintainers.wolfangaukang ]; + maintainers = [ ]; }; }; diff --git a/pkgs/applications/graphics/pixeluvo/default.nix b/pkgs/applications/graphics/pixeluvo/default.nix index 0ae800710d486..9d19e13709658 100644 --- a/pkgs/applications/graphics/pixeluvo/default.nix +++ b/pkgs/applications/graphics/pixeluvo/default.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "pixeluvo"; }; } diff --git a/pkgs/applications/misc/cobang/default.nix b/pkgs/applications/misc/cobang/default.nix index 8759991d9b3b5..49e3f13b6d2e5 100644 --- a/pkgs/applications/misc/cobang/default.nix +++ b/pkgs/applications/misc/cobang/default.nix @@ -97,7 +97,7 @@ buildPythonApplication rec { description = "QR code scanner desktop app for Linux"; homepage = "https://github.com/hongquan/CoBang"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "cobang"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/misc/firefly-desktop/default.nix b/pkgs/applications/misc/firefly-desktop/default.nix index 0db1a801c5dac..6e32f7431b642 100644 --- a/pkgs/applications/misc/firefly-desktop/default.nix +++ b/pkgs/applications/misc/firefly-desktop/default.nix @@ -27,7 +27,7 @@ in appimageTools.wrapType2 { description = "IOTA's New Wallet"; homepage = "https://firefly.iota.org"; license = licenses.asl20; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "firefly-desktop"; }; diff --git a/pkgs/applications/misc/mobilecoin-wallet/default.nix b/pkgs/applications/misc/mobilecoin-wallet/default.nix index 6c4eb8ff3ebc2..42bbae72af5ae 100644 --- a/pkgs/applications/misc/mobilecoin-wallet/default.nix +++ b/pkgs/applications/misc/mobilecoin-wallet/default.nix @@ -33,7 +33,7 @@ in appimageTools.wrapType2 { description = "User-friendly desktop wallet with support for transaction history, encrypted contact book, gift codes, and payments"; homepage = "https://github.com/mobilecoinofficial/desktop-wallet"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "mobilecoin-wallet"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/misc/thedesk/default.nix b/pkgs/applications/misc/thedesk/default.nix index 3fb11f883a2a6..b3292b8ebb5d0 100644 --- a/pkgs/applications/misc/thedesk/default.nix +++ b/pkgs/applications/misc/thedesk/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { homepage = "https://thedesk.top"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "thedesk"; }; diff --git a/pkgs/applications/misc/upwork/default.nix b/pkgs/applications/misc/upwork/default.nix index 6375b2537258d..b5b15b48d7f88 100644 --- a/pkgs/applications/misc/upwork/default.nix +++ b/pkgs/applications/misc/upwork/default.nix @@ -63,6 +63,6 @@ stdenv.mkDerivation rec { sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ zakkor wolfangaukang ]; + maintainers = with maintainers; [ zakkor ]; }; } diff --git a/pkgs/applications/misc/whalebird/default.nix b/pkgs/applications/misc/whalebird/default.nix index c9de782c1aefa..15bd937506ee0 100644 --- a/pkgs/applications/misc/whalebird/default.nix +++ b/pkgs/applications/misc/whalebird/default.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation rec { homepage = "https://whalebird.social"; changelog = "https://github.com/h3poteto/whalebird-desktop/releases/tag/v${version}"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang weathercold ]; + maintainers = with maintainers; [ weathercold ]; platforms = [ "x86_64-linux" "aarch64-linux" ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/alfaview/default.nix b/pkgs/applications/networking/instant-messengers/alfaview/default.nix index 398a3457df9b9..681ba5cc59c98 100644 --- a/pkgs/applications/networking/instant-messengers/alfaview/default.nix +++ b/pkgs/applications/networking/instant-messengers/alfaview/default.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { homepage = "https://alfaview.com"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ wolfangaukang hexchen ]; + maintainers = with maintainers; [ hexchen ]; mainProgram = "alfaview"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/networking/instant-messengers/threema-desktop/default.nix b/pkgs/applications/networking/instant-messengers/threema-desktop/default.nix index 34bf49304cb65..2f71df5cef5ac 100644 --- a/pkgs/applications/networking/instant-messengers/threema-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/threema-desktop/default.nix @@ -122,7 +122,7 @@ buildNpmPackage rec { homepage = "https://threema.ch"; license = licenses.agpl3Only; mainProgram = "threema"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix b/pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix index 78aa173867692..3e09dbc9b8786 100644 --- a/pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix +++ b/pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix @@ -30,7 +30,7 @@ appimageTools.wrapType2 rec { changelog = "https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-${version}"; license = licenses.gpl3Only; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "tutanota-desktop"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/networking/newsreaders/raven-reader/default.nix b/pkgs/applications/networking/newsreaders/raven-reader/default.nix index 811a0d747fa76..275ef729016f4 100644 --- a/pkgs/applications/networking/newsreaders/raven-reader/default.nix +++ b/pkgs/applications/networking/newsreaders/raven-reader/default.nix @@ -31,7 +31,7 @@ appimageTools.wrapType2 { mainProgram = "raven-reader"; homepage = "https://ravenreader.app/"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/networking/protonvpn-cli/default.nix b/pkgs/applications/networking/protonvpn-cli/default.nix index e480ab5f67b1c..7a79c986ca300 100644 --- a/pkgs/applications/networking/protonvpn-cli/default.nix +++ b/pkgs/applications/networking/protonvpn-cli/default.nix @@ -33,7 +33,7 @@ buildPythonApplication rec { meta = with lib; { description = "Linux command-line client for ProtonVPN"; homepage = "https://github.com/protonvpn/linux-cli"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; license = licenses.gpl3Plus; platforms = platforms.linux; mainProgram = "protonvpn-cli"; diff --git a/pkgs/applications/networking/protonvpn-gui/default.nix b/pkgs/applications/networking/protonvpn-gui/default.nix index 19081bd138631..38b196cb6c3d2 100644 --- a/pkgs/applications/networking/protonvpn-gui/default.nix +++ b/pkgs/applications/networking/protonvpn-gui/default.nix @@ -98,6 +98,6 @@ buildPythonApplication rec { license = licenses.gpl3Plus; platforms = platforms.linux; mainProgram = "protonvpn-app"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/protonvpn-gui/legacy.nix b/pkgs/applications/networking/protonvpn-gui/legacy.nix index 32828b5590f67..a749b2875affb 100644 --- a/pkgs/applications/networking/protonvpn-gui/legacy.nix +++ b/pkgs/applications/networking/protonvpn-gui/legacy.nix @@ -71,7 +71,7 @@ buildPythonApplication rec { meta = with lib; { description = "Official ProtonVPN Linux app"; homepage = "https://github.com/ProtonVPN/linux-app"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; license = licenses.gpl3Plus; mainProgram = "protonvpn"; platforms = platforms.linux; diff --git a/pkgs/applications/office/clockify/default.nix b/pkgs/applications/office/clockify/default.nix index 6acb243acec76..8bcd2785bc22c 100644 --- a/pkgs/applications/office/clockify/default.nix +++ b/pkgs/applications/office/clockify/default.nix @@ -25,7 +25,7 @@ appimageTools.wrapType2 rec { description = "Free time tracker and timesheet app that lets you track work hours across projects"; homepage = "https://clockify.me"; license = licenses.unfree; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "clockify"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/applications/office/morgen/default.nix b/pkgs/applications/office/morgen/default.nix index 7bae5b5388d7a..433b8855a9a21 100644 --- a/pkgs/applications/office/morgen/default.nix +++ b/pkgs/applications/office/morgen/default.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { mainProgram = "morgen"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ justanotherariel wolfangaukang ]; + maintainers = with maintainers; [ justanotherariel ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/se/serverless/package.nix b/pkgs/by-name/se/serverless/package.nix index 31745c7778c9b..c7ab60a5be592 100644 --- a/pkgs/by-name/se/serverless/package.nix +++ b/pkgs/by-name/se/serverless/package.nix @@ -28,6 +28,6 @@ buildNpmPackage rec { homepage = "https://serverless.com"; license = lib.licenses.mit; mainProgram = "serverless"; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/we/weasis/package.nix b/pkgs/by-name/we/weasis/package.nix index ae500efec3fdd..999d815186228 100644 --- a/pkgs/by-name/we/weasis/package.nix +++ b/pkgs/by-name/we/weasis/package.nix @@ -73,7 +73,7 @@ in stdenv.mkDerivation rec { # Using changelog from releases as it is more accurate changelog = "https://github.com/nroduit/Weasis/releases/tag/v${version}"; license = with lib.licenses; [ asl20 epl20 ]; - maintainers = [ lib.maintainers.wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "Weasis"; }; diff --git a/pkgs/development/libraries/imgui/default.nix b/pkgs/development/libraries/imgui/default.nix index 09b88c1a191ce..e5d4f54e9a006 100644 --- a/pkgs/development/libraries/imgui/default.nix +++ b/pkgs/development/libraries/imgui/default.nix @@ -139,7 +139,6 @@ stdenv.mkDerivation rec { license = lib.licenses.mit; # vcpkg licensed as MIT too maintainers = with lib.maintainers; [ SomeoneSerge - wolfangaukang ]; platforms = lib.platforms.all; }; diff --git a/pkgs/development/python-modules/arnparse/default.nix b/pkgs/development/python-modules/arnparse/default.nix index 43e072b314614..f9795be59283a 100644 --- a/pkgs/development/python-modules/arnparse/default.nix +++ b/pkgs/development/python-modules/arnparse/default.nix @@ -25,6 +25,6 @@ buildPythonPackage rec { description = "Parse ARNs using Python"; homepage = "https://github.com/PokaInc/arnparse"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/certomancer/default.nix b/pkgs/development/python-modules/certomancer/default.nix index eb21bdeeee04e..e9311df36e82f 100644 --- a/pkgs/development/python-modules/certomancer/default.nix +++ b/pkgs/development/python-modules/certomancer/default.nix @@ -87,6 +87,6 @@ buildPythonPackage rec { mainProgram = "certomancer"; homepage = "https://github.com/MatthiasValvekens/certomancer"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chacha20poly1305/default.nix b/pkgs/development/python-modules/chacha20poly1305/default.nix index 5ced1c4045325..0493f9b15ee02 100644 --- a/pkgs/development/python-modules/chacha20poly1305/default.nix +++ b/pkgs/development/python-modules/chacha20poly1305/default.nix @@ -26,6 +26,6 @@ buildPythonPackage rec { description = "Module that implements ChaCha20Poly1305"; homepage = "https://github.com/ph4r05/py-chacha20poly1305"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/deep-translator/default.nix b/pkgs/development/python-modules/deep-translator/default.nix index 0d9bb2e0c71ad..a0bbfd89d8e02 100644 --- a/pkgs/development/python-modules/deep-translator/default.nix +++ b/pkgs/development/python-modules/deep-translator/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { homepage = "https://deep-translator.readthedocs.io"; changelog = "https://github.com/nidhaloff/deep-translator/releases/tag/v${version}"; license = licenses.asl20; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fleep/default.nix b/pkgs/development/python-modules/fleep/default.nix index ce869249649ca..4f178a836c22f 100644 --- a/pkgs/development/python-modules/fleep/default.nix +++ b/pkgs/development/python-modules/fleep/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "File format determination library"; homepage = "https://github.com/floyernick/fleep-py"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gaphas/default.nix b/pkgs/development/python-modules/gaphas/default.nix index e038dd92ab1e3..c0aeebe3d9469 100644 --- a/pkgs/development/python-modules/gaphas/default.nix +++ b/pkgs/development/python-modules/gaphas/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { homepage = "https://github.com/gaphor/gaphas"; changelog = "https://github.com/gaphor/gaphas/releases/tag/${version}"; license = licenses.asl20; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index b9bae5af2be6d..30674f2090526 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { meta = with lib; { description = "Generic programming (Multiple dispatch) library for Python"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; homepage = "https://github.com/gaphor/generic"; changelog = "https://github.com/gaphor/generic/releases/tag/${version}"; license = licenses.bsd3; diff --git a/pkgs/development/python-modules/ilua/default.nix b/pkgs/development/python-modules/ilua/default.nix index de4712f92fea8..4e4899ebc74d5 100644 --- a/pkgs/development/python-modules/ilua/default.nix +++ b/pkgs/development/python-modules/ilua/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { mainProgram = "ilua"; homepage = "https://github.com/guysv/ilua"; license = licenses.gpl2Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/keyboard/default.nix b/pkgs/development/python-modules/keyboard/default.nix index 66f5efb5693cc..7620e272ea719 100644 --- a/pkgs/development/python-modules/keyboard/default.nix +++ b/pkgs/development/python-modules/keyboard/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { description = "Hook and simulate keyboard events on Windows and Linux"; homepage = "https://github.com/boppreh/keyboard"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/kiss-headers/default.nix b/pkgs/development/python-modules/kiss-headers/default.nix index f12ee172bed56..e7e52dacd187f 100644 --- a/pkgs/development/python-modules/kiss-headers/default.nix +++ b/pkgs/development/python-modules/kiss-headers/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { description = "Python package for HTTP/1.1 style headers"; homepage = "https://github.com/Ousret/kiss-headers"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-client/default.nix b/pkgs/development/python-modules/proton-client/default.nix index d61c5aed9bb6c..4e178ce26c929 100644 --- a/pkgs/development/python-modules/proton-client/default.nix +++ b/pkgs/development/python-modules/proton-client/default.nix @@ -57,7 +57,7 @@ buildPythonPackage rec { description = "Python Proton client module"; homepage = "https://github.com/ProtonMail/proton-python-client"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/proton-core/default.nix b/pkgs/development/python-modules/proton-core/default.nix index faedd9893190c..c19ef3b31d17a 100644 --- a/pkgs/development/python-modules/proton-core/default.nix +++ b/pkgs/development/python-modules/proton-core/default.nix @@ -68,6 +68,6 @@ buildPythonPackage rec { description = "Core logic used by the other Proton components"; homepage = "https://github.com/ProtonVPN/python-proton-core"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-keyring-linux-secretservice/default.nix b/pkgs/development/python-modules/proton-keyring-linux-secretservice/default.nix index d7300a52e0799..ab9cefd53a993 100644 --- a/pkgs/development/python-modules/proton-keyring-linux-secretservice/default.nix +++ b/pkgs/development/python-modules/proton-keyring-linux-secretservice/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "ProtonVPN component to access Linux's keyring secret service API"; homepage = "https://github.com/ProtonVPN/python-proton-keyring-linux-secretservice"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-keyring-linux/default.nix b/pkgs/development/python-modules/proton-keyring-linux/default.nix index ebb8fc2923fdc..a0f63f4222da2 100644 --- a/pkgs/development/python-modules/proton-keyring-linux/default.nix +++ b/pkgs/development/python-modules/proton-keyring-linux/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "ProtonVPN core component to access Linux's keyring"; homepage = "https://github.com/ProtonVPN/python-proton-keyring-linux"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-api-core/default.nix b/pkgs/development/python-modules/proton-vpn-api-core/default.nix index 3af6e6eb62b5c..c3597acd9e5ce 100644 --- a/pkgs/development/python-modules/proton-vpn-api-core/default.nix +++ b/pkgs/development/python-modules/proton-vpn-api-core/default.nix @@ -55,6 +55,6 @@ buildPythonPackage rec { description = "Acts as a facade to the other Proton VPN components, exposing a uniform API to the available Proton VPN services"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-api-core"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-connection/default.nix b/pkgs/development/python-modules/proton-vpn-connection/default.nix index b343ae1805414..0df1b42a2bc40 100644 --- a/pkgs/development/python-modules/proton-vpn-connection/default.nix +++ b/pkgs/development/python-modules/proton-vpn-connection/default.nix @@ -63,6 +63,6 @@ buildPythonPackage rec { description = "Defines the interface that VPN connection backends should implement"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-connection"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-killswitch-network-manager/default.nix b/pkgs/development/python-modules/proton-vpn-killswitch-network-manager/default.nix index 2db8b53a3879a..68e024501cb65 100644 --- a/pkgs/development/python-modules/proton-vpn-killswitch-network-manager/default.nix +++ b/pkgs/development/python-modules/proton-vpn-killswitch-network-manager/default.nix @@ -52,6 +52,6 @@ buildPythonPackage rec { description = "Implementation of the proton-vpn-killswitch interface using Network Manager"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-killswitch-network-manager"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-killswitch/default.nix b/pkgs/development/python-modules/proton-vpn-killswitch/default.nix index cc7fc839e5136..c2ed563df880e 100644 --- a/pkgs/development/python-modules/proton-vpn-killswitch/default.nix +++ b/pkgs/development/python-modules/proton-vpn-killswitch/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "Defines the ProtonVPN kill switch interface"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-killswitch"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-logger/default.nix b/pkgs/development/python-modules/proton-vpn-logger/default.nix index a8c3f02de8fd2..d492ed146eb7e 100644 --- a/pkgs/development/python-modules/proton-vpn-logger/default.nix +++ b/pkgs/development/python-modules/proton-vpn-logger/default.nix @@ -41,6 +41,6 @@ buildPythonPackage rec { description = "General purpose logging package for the entire ProtonVPN Linux client"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-logger"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-network-manager-openvpn/default.nix b/pkgs/development/python-modules/proton-vpn-network-manager-openvpn/default.nix index 2064cf0a6cca1..c10b489ed6b0d 100644 --- a/pkgs/development/python-modules/proton-vpn-network-manager-openvpn/default.nix +++ b/pkgs/development/python-modules/proton-vpn-network-manager-openvpn/default.nix @@ -45,6 +45,6 @@ buildPythonPackage rec { description = "Adds support for the OpenVPN protocol using NetworkManager"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-network-manager-openvpn"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-network-manager/default.nix b/pkgs/development/python-modules/proton-vpn-network-manager/default.nix index b08545a739651..97dd1d52dca98 100644 --- a/pkgs/development/python-modules/proton-vpn-network-manager/default.nix +++ b/pkgs/development/python-modules/proton-vpn-network-manager/default.nix @@ -56,6 +56,6 @@ buildPythonPackage rec { description = "Provides the necessary functionality for other ProtonVPN components to interact with NetworkManager"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-network-manager"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-session/default.nix b/pkgs/development/python-modules/proton-vpn-session/default.nix index b5d4756db600a..5210c42373111 100644 --- a/pkgs/development/python-modules/proton-vpn-session/default.nix +++ b/pkgs/development/python-modules/proton-vpn-session/default.nix @@ -61,6 +61,6 @@ buildPythonPackage rec { description = "Provides utility classes to manage VPN sessions"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-session"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/protonvpn-nm-lib/default.nix b/pkgs/development/python-modules/protonvpn-nm-lib/default.nix index 4b4780afa4924..a5067b1525cf7 100644 --- a/pkgs/development/python-modules/protonvpn-nm-lib/default.nix +++ b/pkgs/development/python-modules/protonvpn-nm-lib/default.nix @@ -77,7 +77,7 @@ buildPythonPackage rec { mainProgram = "protonvpn_reconnector.py"; homepage = "https://github.com/ProtonVPN/protonvpn-nm-lib"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/pyhanko-certvalidator/default.nix b/pkgs/development/python-modules/pyhanko-certvalidator/default.nix index a774b8d59fb7d..d721bb46d2a67 100644 --- a/pkgs/development/python-modules/pyhanko-certvalidator/default.nix +++ b/pkgs/development/python-modules/pyhanko-certvalidator/default.nix @@ -78,6 +78,6 @@ buildPythonPackage rec { homepage = "https://github.com/MatthiasValvekens/certvalidator"; changelog = "https://github.com/MatthiasValvekens/certvalidator/blob/v${version}/changelog.md"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyhanko/default.nix b/pkgs/development/python-modules/pyhanko/default.nix index ba9dd2fc3969f..8b18971d4af3a 100644 --- a/pkgs/development/python-modules/pyhanko/default.nix +++ b/pkgs/development/python-modules/pyhanko/default.nix @@ -132,6 +132,6 @@ buildPythonPackage rec { homepage = "https://github.com/MatthiasValvekens/pyHanko"; changelog = "https://github.com/MatthiasValvekens/pyHanko/blob/v${version}/docs/changelog.rst"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-barcode/default.nix b/pkgs/development/python-modules/python-barcode/default.nix index 63d39dc9a8526..214e074ffd7a4 100644 --- a/pkgs/development/python-modules/python-barcode/default.nix +++ b/pkgs/development/python-modules/python-barcode/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { homepage = "https://github.com/WhyNotHugo/python-barcode"; changelog = "https://github.com/WhyNotHugo/python-barcode/blob/v${version}/docs/changelog.rst"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-pae/default.nix b/pkgs/development/python-modules/python-pae/default.nix index d5595c14f03d2..731626689adf2 100644 --- a/pkgs/development/python-modules/python-pae/default.nix +++ b/pkgs/development/python-modules/python-pae/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "Pre-authentication encoding (PAE) implementation in Python"; homepage = "https://github.com/MatthiasValvekens/python-pae"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-trovo/default.nix b/pkgs/development/python-modules/python-trovo/default.nix index f2af3cbb53d27..dace99e3b34e9 100644 --- a/pkgs/development/python-modules/python-trovo/default.nix +++ b/pkgs/development/python-modules/python-trovo/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { description = "Python wrapper for the Trovo API"; homepage = "https://codeberg.org/wolfangaukang/python-trovo"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-zbar/default.nix b/pkgs/development/python-modules/python-zbar/default.nix index bd8f4c01ff97c..ed676f9c3561d 100644 --- a/pkgs/development/python-modules/python-zbar/default.nix +++ b/pkgs/development/python-modules/python-zbar/default.nix @@ -54,6 +54,6 @@ buildPythonPackage rec { description = "Python bindings for zbar"; homepage = "https://github.com/mchehab/zbar"; license = licenses.lgpl21Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/single-version/default.nix b/pkgs/development/python-modules/single-version/default.nix index e08878e89f581..869ef6a38309f 100644 --- a/pkgs/development/python-modules/single-version/default.nix +++ b/pkgs/development/python-modules/single-version/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { description = "Utility to let you have a single source of version in your code base"; homepage = "https://github.com/hongquan/single-version"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/twitchapi/default.nix b/pkgs/development/python-modules/twitchapi/default.nix index 743f4892b07e6..6ceb6b5313664 100644 --- a/pkgs/development/python-modules/twitchapi/default.nix +++ b/pkgs/development/python-modules/twitchapi/default.nix @@ -50,7 +50,6 @@ buildPythonPackage rec { license = licenses.mit; maintainers = with maintainers; [ dotlambda - wolfangaukang ]; }; } diff --git a/pkgs/development/python-modules/txzmq/default.nix b/pkgs/development/python-modules/txzmq/default.nix index d49c52f274624..6c521d2f69f32 100644 --- a/pkgs/development/python-modules/txzmq/default.nix +++ b/pkgs/development/python-modules/txzmq/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "Twisted bindings for ZeroMQ"; homepage = "https://github.com/smira/txZMQ"; license = licenses.mpl20; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/cfn-nag/default.nix b/pkgs/development/tools/cfn-nag/default.nix index 4e25f052401d7..8438607102c36 100644 --- a/pkgs/development/tools/cfn-nag/default.nix +++ b/pkgs/development/tools/cfn-nag/default.nix @@ -13,7 +13,7 @@ bundlerEnv { description = "Linting tool for CloudFormation templates"; homepage = "https://github.com/stelligent/cfn_nag"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/ejs/default.nix b/pkgs/development/tools/ejs/default.nix index 5392a9c137a2c..b9242836b62be 100644 --- a/pkgs/development/tools/ejs/default.nix +++ b/pkgs/development/tools/ejs/default.nix @@ -29,6 +29,6 @@ buildNpmPackage rec { homepage = "http://ejs.co"; license = lib.licenses.asl20; mainProgram = "ejs"; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/language-servers/perlnavigator/default.nix b/pkgs/development/tools/language-servers/perlnavigator/default.nix index adaa30747f6ef..a7d243888587c 100644 --- a/pkgs/development/tools/language-servers/perlnavigator/default.nix +++ b/pkgs/development/tools/language-servers/perlnavigator/default.nix @@ -75,6 +75,6 @@ in buildNpmPackage rec { homepage = "https://github.com/bscan/PerlNavigator/tree/main/server"; license = lib.licenses.mit; mainProgram = "perlnavigator"; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/language-servers/yaml-language-server/default.nix b/pkgs/development/tools/language-servers/yaml-language-server/default.nix index 1737b2a8656e0..90aae9d0d82bf 100644 --- a/pkgs/development/tools/language-servers/yaml-language-server/default.nix +++ b/pkgs/development/tools/language-servers/yaml-language-server/default.nix @@ -36,6 +36,6 @@ mkYarnPackage rec { homepage = "https://github.com/redhat-developer/yaml-language-server"; license = lib.licenses.mit; mainProgram = "yaml-language-server"; - maintainers = with lib.maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/license_finder/default.nix b/pkgs/development/tools/license_finder/default.nix index 954e2dcd5183d..c5ac088555658 100644 --- a/pkgs/development/tools/license_finder/default.nix +++ b/pkgs/development/tools/license_finder/default.nix @@ -13,7 +13,7 @@ bundlerEnv { description = "Find licenses for your project's dependencies"; homepage = "https://github.com/pivotal/licensefinder"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/sslmate-agent/default.nix b/pkgs/development/tools/sslmate-agent/default.nix index dccc22e7fe9e1..174507afc21c4 100644 --- a/pkgs/development/tools/sslmate-agent/default.nix +++ b/pkgs/development/tools/sslmate-agent/default.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { homepage = "https://sslmate.com/"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/games/rare/default.nix b/pkgs/games/rare/default.nix index 6d46b09626f66..ae65bdc2f1719 100644 --- a/pkgs/games/rare/default.nix +++ b/pkgs/games/rare/default.nix @@ -57,7 +57,7 @@ buildPythonApplication rec { meta = with lib; { description = "GUI for Legendary, an Epic Games Launcher open source alternative"; homepage = "https://github.com/RareDevs/Rare"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; license = licenses.gpl3Only; platforms = platforms.linux; mainProgram = "rare"; diff --git a/pkgs/tools/misc/gaphor/default.nix b/pkgs/tools/misc/gaphor/default.nix index a8afdef6a2bff..68f922d4abd81 100644 --- a/pkgs/tools/misc/gaphor/default.nix +++ b/pkgs/tools/misc/gaphor/default.nix @@ -76,7 +76,7 @@ buildPythonApplication rec { meta = with lib; { description = "Simple modeling tool written in Python"; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; homepage = "https://github.com/gaphor/gaphor"; license = licenses.asl20; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/tools/misc/ttchat/default.nix b/pkgs/tools/misc/ttchat/default.nix index 5aad1527df42d..ec62357cbbedd 100644 --- a/pkgs/tools/misc/ttchat/default.nix +++ b/pkgs/tools/misc/ttchat/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { description = "Connect to a Twitch channel's chat from your terminal"; homepage = "https://github.com/atye/ttchat"; license = licenses.asl20; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "ttchat"; }; } diff --git a/pkgs/tools/networking/cloudflare-warp/default.nix b/pkgs/tools/networking/cloudflare-warp/default.nix index 0e36b71c55b3b..4a0f842071369 100644 --- a/pkgs/tools/networking/cloudflare-warp/default.nix +++ b/pkgs/tools/networking/cloudflare-warp/default.nix @@ -87,7 +87,6 @@ stdenv.mkDerivation rec { license = licenses.unfree; mainProgram = "warp-cli"; maintainers = with maintainers; [ - wolfangaukang devpikachu marcusramberg ]; diff --git a/pkgs/tools/networking/opendrop/default.nix b/pkgs/tools/networking/opendrop/default.nix index ce43b96d43f9e..a45c8916f9f63 100644 --- a/pkgs/tools/networking/opendrop/default.nix +++ b/pkgs/tools/networking/opendrop/default.nix @@ -57,7 +57,7 @@ buildPythonApplication rec { homepage = "https://owlink.org/"; changelog = "https://github.com/seemoo-lab/opendrop/releases/tag/${src.rev}"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; mainProgram = "opendrop"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/tools/networking/owl/default.nix b/pkgs/tools/networking/owl/default.nix index 45dcb39c4d774..703859b8b1a36 100644 --- a/pkgs/tools/networking/owl/default.nix +++ b/pkgs/tools/networking/owl/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { description = "Open Apple Wireless Direct Link (AWDL) implementation written in C"; homepage = "https://owlink.org/"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "owl"; }; diff --git a/pkgs/tools/security/buttercup-desktop/default.nix b/pkgs/tools/security/buttercup-desktop/default.nix index cbe5bbe1f8d0e..1464d67dbc3ed 100644 --- a/pkgs/tools/security/buttercup-desktop/default.nix +++ b/pkgs/tools/security/buttercup-desktop/default.nix @@ -26,7 +26,7 @@ in appimageTools.wrapType2 { mainProgram = "buttercup-desktop"; homepage = "https://buttercup.pw"; license = licenses.gpl3Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/tools/security/pass2csv/default.nix b/pkgs/tools/security/pass2csv/default.nix index 7071ad9fb219d..5a255d201f0cd 100644 --- a/pkgs/tools/security/pass2csv/default.nix +++ b/pkgs/tools/security/pass2csv/default.nix @@ -31,6 +31,6 @@ buildPythonApplication rec { mainProgram = "pass2csv"; homepage = "https://github.com/reinefjord/pass2csv"; license = licenses.mit; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/security/whatweb/default.nix b/pkgs/tools/security/whatweb/default.nix index fbe78834c8268..9adf3cde8e478 100644 --- a/pkgs/tools/security/whatweb/default.nix +++ b/pkgs/tools/security/whatweb/default.nix @@ -45,7 +45,7 @@ in stdenv.mkDerivation rec { mainProgram = "whatweb"; homepage = "https://github.com/urbanadventurer/whatweb"; license = licenses.gpl2Only; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/text/bashblog/default.nix b/pkgs/tools/text/bashblog/default.nix index 54e5d6f748e0c..0c43e6eecf1ce 100644 --- a/pkgs/tools/text/bashblog/default.nix +++ b/pkgs/tools/text/bashblog/default.nix @@ -58,6 +58,6 @@ in stdenv.mkDerivation { homepage = "https://github.com/cfenollosa/bashblog"; license = licenses.gpl3Only; platforms = platforms.unix; - maintainers = with maintainers; [ wolfangaukang ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/virtualization/ovftool/default.nix b/pkgs/tools/virtualization/ovftool/default.nix index 34312c412511c..46e1614385bf9 100644 --- a/pkgs/tools/virtualization/ovftool/default.nix +++ b/pkgs/tools/virtualization/ovftool/default.nix @@ -251,7 +251,7 @@ stdenv.mkDerivation { homepage = "https://developer.vmware.com/web/tool/ovf-tool/"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ numinit wolfangaukang thanegill ]; + maintainers = with maintainers; [ numinit thanegill ]; platforms = builtins.attrNames ovftoolSystems; mainProgram = "ovftool"; knownVulnerabilities = [ -- cgit 1.4.1 From 15dbe36d2c622137175dd52846eaaf0a7a946b33 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 22 Jun 2024 15:53:47 +0000 Subject: xcp: 0.20.4 -> 0.21.0 --- pkgs/tools/misc/xcp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/xcp/default.nix b/pkgs/tools/misc/xcp/default.nix index ecdb455986153..718027b1efd7f 100644 --- a/pkgs/tools/misc/xcp/default.nix +++ b/pkgs/tools/misc/xcp/default.nix @@ -2,19 +2,19 @@ rustPlatform.buildRustPackage rec { pname = "xcp"; - version = "0.20.4"; + version = "0.21.0"; src = fetchFromGitHub { owner = "tarka"; repo = pname; rev = "v${version}"; - hash = "sha256-0ucm8XBxYwXvpVJN8If8BIToQGiBisKLZJYKuvaORto="; + hash = "sha256-RxEEbyM7wXteYteA4GmvXEraHhm+Kkr2UbYR8G0gO8c="; }; # no such file or directory errors doCheck = false; - cargoHash = "sha256-UdQUrIRos3TmebotdESvKH+90WVMJ0oTc43p+AT4xMI="; + cargoHash = "sha256-ruL1KP3a76DRg0RqpNYz0ZL0V2Ce4v3zt9B/tXyXQs0="; meta = with lib; { description = "Extended cp(1)"; -- cgit 1.4.1 From 5d0e84cc24877988c61998b8fa1e3d5a57f1758f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 22 Jun 2024 19:44:57 +0000 Subject: grizzly: 0.4.2 -> 0.4.3 --- pkgs/tools/misc/grizzly/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/grizzly/default.nix b/pkgs/tools/misc/grizzly/default.nix index af80a479ba7f5..469fea27fa648 100644 --- a/pkgs/tools/misc/grizzly/default.nix +++ b/pkgs/tools/misc/grizzly/default.nix @@ -5,13 +5,13 @@ buildGoModule rec { pname = "grizzly"; - version = "0.4.2"; + version = "0.4.3"; src = fetchFromGitHub { owner = "grafana"; repo = pname; rev = "v${version}"; - hash = "sha256-UOUBck1GrG3ijUpE3jPaFcC/KtlObaR38u3St8NToTk="; + hash = "sha256-f60zAE94jdJaGjn+SoO1qs3SgWRpK9pdbirRrsKKBJQ="; }; vendorHash = "sha256-lioFmaFzqaxN1wnYJaoHA54to1xGZjaLGaqAFIfTaTs="; -- cgit 1.4.1 From 438fbfa8b99dee65864fedaaae5190e160304837 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Sat, 22 Jun 2024 23:26:33 +0200 Subject: remind: refactor --- pkgs/tools/misc/remind/default.nix | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/remind/default.nix b/pkgs/tools/misc/remind/default.nix index 467981bb0a294..a1f63cc08ddf9 100644 --- a/pkgs/tools/misc/remind/default.nix +++ b/pkgs/tools/misc/remind/default.nix @@ -6,31 +6,26 @@ , tkremind ? true }: -let - inherit (lib) optionals optionalString; - tclLibraries = optionals tkremind [ tcllib tk ]; - tkremindPatch = optionalString tkremind '' - substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish" - ''; -in tcl.mkTclDerivation rec { pname = "remind"; version = "05.00.01"; src = fetchurl { url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz"; - sha256 = "sha256-tj36/lLn67/hkNMrRVGXRLqQ9Sx6oDKZHeajiSYn97c="; + hash = "sha256-tj36/lLn67/hkNMrRVGXRLqQ9Sx6oDKZHeajiSYn97c="; }; - propagatedBuildInputs = tclLibraries; + propagatedBuildInputs = lib.optionals tkremind [ tcllib tk ]; - postPatch = '' - substituteInPlace ./configure \ - --replace "sleep 1" "true" - substituteInPlace ./src/init.c \ - --replace "rkrphgvba(0);" "" \ - --replace "rkrphgvba(1);" "" - ${tkremindPatch} + postPatch = lib.optionalString tkremind '' + # NOTA BENE: The path to rem2pdf is replaced in tkremind for future use + # as rem2pdf is currently not build since it requires the JSON::MaybeXS, + # Pango and Cairo Perl modules. + substituteInPlace scripts/tkremind \ + --replace-fail "exec wish" "exec ${lib.getBin tk}/bin/wish" \ + --replace-fail 'set Remind "remind"' "set Remind \"$out/bin/remind\"" \ + --replace-fail 'set Rem2PS "rem2ps"' "set Rem2PS \"$out/bin/rem2ps\"" \ + --replace-fail 'set Rem2PDF "rem2pdf"' "set Rem2PDF \"$out/bin/rem2pdf\"" ''; meta = with lib; { @@ -38,6 +33,7 @@ tcl.mkTclDerivation rec { description = "Sophisticated calendar and alarm program for the console"; license = licenses.gpl2Only; maintainers = with maintainers; [ raskin kovirobi ]; + mainProgram = "remind"; platforms = platforms.unix; }; } -- cgit 1.4.1 From 4f991469fba89c1703f5ff5338fb923c44f09351 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Sat, 22 Jun 2024 23:28:21 +0200 Subject: remind: fix darwin build --- pkgs/tools/misc/remind/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/remind/default.nix b/pkgs/tools/misc/remind/default.nix index a1f63cc08ddf9..51448931dcfb3 100644 --- a/pkgs/tools/misc/remind/default.nix +++ b/pkgs/tools/misc/remind/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , fetchurl , tk , tcllib @@ -28,6 +29,15 @@ tcl.mkTclDerivation rec { --replace-fail 'set Rem2PDF "rem2pdf"' "set Rem2PDF \"$out/bin/rem2pdf\"" ''; + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin (toString [ + # Disable clang link time optimization until the following issue is resolved: + # https://github.com/NixOS/nixpkgs/issues/19098 + "-fno-lto" + # On Darwin setenv and unsetenv are defined in stdlib.h from libSystem + "-DHAVE_SETENV" + "-DHAVE_UNSETENV" + ]); + meta = with lib; { homepage = "https://dianne.skoll.ca/projects/remind/"; description = "Sophisticated calendar and alarm program for the console"; -- cgit 1.4.1 From 76913378a2da83e86bd4a876592308c055d993ca Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 23 Jun 2024 09:06:03 +0000 Subject: svtplay-dl: 4.83 -> 4.89 --- pkgs/tools/misc/svtplay-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/misc') diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix index e03b792456816..ec8cefeab7a8e 100644 --- a/pkgs/tools/misc/svtplay-dl/default.nix +++ b/pkgs/tools/misc/svtplay-dl/default.nix @@ -15,7 +15,7 @@ let python pytest nose3 cryptography pyyaml requests mock requests-mock python-dateutil setuptools; - version = "4.83"; + version = "4.89"; in @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { owner = "spaam"; repo = "svtplay-dl"; rev = version; - hash = "sha256-CaidnRd21qtPKlFMHfQMmYVz/CfN88uBC1XK3JikHf0="; + hash = "sha256-EuLXDbJembiFFEuIihrc8KkdqxLBgT4Ib3xwkKibVS8="; }; pythonPaths = [ cryptography pyyaml requests ]; -- cgit 1.4.1 From e50a6f5d60d362a3423fef0fac46520821521813 Mon Sep 17 00:00:00 2001 From: Zitrone Date: Wed, 12 Jun 2024 05:25:54 +0200 Subject: SP800-90B_EntropyAssessment: rename to sp800-90b-entropyassessment --- .../sp/sp800-90b-entropyassessment/package.nix | 50 ++++++++++++++++++++++ .../misc/SP800-90B_EntropyAssessment/default.nix | 50 ---------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 - 4 files changed, 51 insertions(+), 52 deletions(-) create mode 100644 pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix delete mode 100644 pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix (limited to 'pkgs/tools/misc') diff --git a/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix b/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix new file mode 100644 index 0000000000000..0619fe183fed0 --- /dev/null +++ b/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix @@ -0,0 +1,50 @@ +{ lib +, stdenv +, fetchFromGitHub +, bzip2 +, libdivsufsort +, jsoncpp +, openssl +, mpfr +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "sp800-90b-entropyassessment"; + version = "1.1.6"; + + src = fetchFromGitHub { + owner = "usnistgov"; + repo = "SP800-90B_EntropyAssessment"; + rev = "v${finalAttrs.version}"; + hash = "sha256-KZQ7kC0PbBkjLEQZIqYakQ91OvCxruhdfUwiRHtno3w="; + }; + + buildInputs = [ bzip2 libdivsufsort jsoncpp openssl mpfr ]; + + postPatch = '' + substituteInPlace Makefile \ + --replace "-march=native" "" + ''; + + sourceRoot = "${finalAttrs.src.name}/cpp"; + + makeFlags = [ + "CROSS_COMPILE=${stdenv.cc.targetPrefix}" + "ARCH=${stdenv.hostPlatform.linuxArch}" + ]; + + installPhase = '' + runHook preInstall + mkdir -p $out/bin + cp ea_* $out/bin + runHook postInstall + ''; + + meta = { + homepage = "https://github.com/usnistgov/SP800-90B_EntropyAssessment"; + description = "Implementation of min-entropy assessment methods included in Special Publication 800-90B"; + platforms = lib.platforms.linux; + license = lib.licenses.nistSoftware; + maintainers = with lib.maintainers; [ orichter thillux ]; + }; +}) diff --git a/pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix b/pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix deleted file mode 100644 index 3c18621d712de..0000000000000 --- a/pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ lib -, stdenv -, fetchFromGitHub -, bzip2 -, libdivsufsort -, jsoncpp -, openssl -, mpfr -}: - -stdenv.mkDerivation rec { - pname = "SP800-90B_EntropyAssessment"; - version = "1.1.6"; - - src = fetchFromGitHub { - owner = "usnistgov"; - repo = "SP800-90B_EntropyAssessment"; - rev = "v${version}"; - hash = "sha256-KZQ7kC0PbBkjLEQZIqYakQ91OvCxruhdfUwiRHtno3w="; - }; - - buildInputs = [ bzip2 libdivsufsort jsoncpp openssl mpfr ]; - - postPatch = '' - substituteInPlace Makefile \ - --replace "-march=native" "" - ''; - - sourceRoot = "${src.name}/cpp"; - - makeFlags = [ - "CROSS_COMPILE=${stdenv.cc.targetPrefix}" - "ARCH=${stdenv.hostPlatform.linuxArch}" - ]; - - installPhase = '' - runHook preInstall - mkdir -p $out/bin - cp ea_* $out/bin - runHook postInstall - ''; - - meta = { - homepage = "https://github.com/usnistgov/SP800-90B_EntropyAssessment"; - description = "Implementation of min-entropy assessment methods included in Special Publication 800-90B"; - platforms = lib.platforms.linux; - license = lib.licenses.nistSoftware; - maintainers = with lib.maintainers; [ orichter thillux ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 32324f66bd7eb..db1973e884284 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1263,6 +1263,7 @@ mapAliases ({ solr = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 soundOfSorting = sound-of-sorting; # Added 2023-07-07 soundux = throw "'soundux' has been removed, as it is unmaintained."; # Added on 2024-02-14 + SP800-90B_EntropyAssessment = sp800-90b-entropyassessment; # Added on 2024-06-12 SPAdes = spades; # Added 2024-06-12 spark2 = throw "'spark2' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 spark_2_4 = throw "'spark_2_4' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1ed7604dd2bce..0b8f0f4d11336 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -39630,8 +39630,6 @@ with pkgs; sndio = callPackage ../misc/sndio { }; - SP800-90B_EntropyAssessment = callPackage ../tools/misc/SP800-90B_EntropyAssessment { }; - sticky = callPackage ../applications/misc/sticky { }; stork = darwin.apple_sdk_11_0.callPackage ../applications/misc/stork { -- cgit 1.4.1