nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
49abe290 105037f9

+201 -16
+10
maintainers/maintainer-list.nix
··· 5184 5184 githubId = 37185887; 5185 5185 name = "Calvin Kim"; 5186 5186 }; 5187 + kennyballou = { 5188 + email = "kb@devnulllabs.io"; 5189 + github = "kennyballou"; 5190 + githubId = 2186188; 5191 + name = "Kenny Ballou"; 5192 + keys = [{ 5193 + longkeyid = "rsa4096/0xB0CAA28A02958308"; 5194 + fingerprint = "932F 3E8E 1C0F 4A98 95D7 B8B8 B0CA A28A 0295 8308"; 5195 + }]; 5196 + }; 5187 5197 kentjames = { 5188 5198 email = "jameschristopherkent@gmail.com"; 5189 5199 github = "kentjames";
+24
pkgs/applications/kde/akonadi-calendar-tools.nix
··· 1 + { mkDerivation 2 + , lib 3 + , extra-cmake-modules 4 + , kdoctools 5 + , akonadi 6 + , calendarsupport 7 + }: 8 + 9 + mkDerivation { 10 + pname = "akonadi-calendar-tools"; 11 + meta = { 12 + homepage = "https://github.com/KDE/akonadi-calendar-tools"; 13 + description = "Console applications and utilities for managing calendars in Akonadi"; 14 + license = with lib.licenses; [ gpl2Plus cc0 ]; 15 + maintainers = with lib.maintainers; [ kennyballou ]; 16 + platforms = lib.platforms.linux; 17 + }; 18 + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 19 + propagatedBuildInputs = [ 20 + akonadi 21 + calendarsupport 22 + ]; 23 + outputs = [ "out" "dev" ]; 24 + }
+3
pkgs/applications/kde/default.nix
··· 68 68 in { 69 69 akonadi = callPackage ./akonadi {}; 70 70 akonadi-calendar = callPackage ./akonadi-calendar.nix {}; 71 + akonadi-calendar-tools = callPackage ./akonadi-calendar-tools.nix {}; 71 72 akonadi-contacts = callPackage ./akonadi-contacts.nix {}; 72 73 akonadi-import-wizard = callPackage ./akonadi-import-wizard.nix {}; 73 74 akonadi-mime = callPackage ./akonadi-mime.nix {}; ··· 94 93 incidenceeditor = callPackage ./incidenceeditor.nix {}; 95 94 k3b = callPackage ./k3b.nix {}; 96 95 kaccounts-integration = callPackage ./kaccounts-integration.nix {}; 96 + kaccounts-providers = callPackage ./kaccounts-providers.nix {}; 97 97 kaddressbook = callPackage ./kaddressbook.nix {}; 98 98 kalarm = callPackage ./kalarm.nix {}; 99 99 kalarmcal = callPackage ./kalarmcal.nix {}; ··· 139 137 kipi-plugins = callPackage ./kipi-plugins.nix {}; 140 138 kitinerary = callPackage ./kitinerary.nix {}; 141 139 kio-extras = callPackage ./kio-extras.nix {}; 140 + kio-gdrive = callPackage ./kio-gdrive.nix {}; 142 141 kldap = callPackage ./kldap.nix {}; 143 142 kleopatra = callPackage ./kleopatra.nix {}; 144 143 klettres = callPackage ./klettres.nix {};
+44
pkgs/applications/kde/kaccounts-providers.nix
··· 1 + { mkDerivation 2 + , lib 3 + , accounts-qt 4 + , extra-cmake-modules 5 + , intltool 6 + , kaccounts-integration 7 + , kcmutils 8 + , kcoreaddons 9 + , kdeclarative 10 + , kdoctools 11 + , kio 12 + , kpackage 13 + , kwallet 14 + , qtwebengine 15 + , signond 16 + }: 17 + 18 + mkDerivation { 19 + pname = "kaccounts-providers"; 20 + meta = with lib; { 21 + homepage = "https://community.kde.org/KTp/Setting_up_KAccounts"; 22 + description = "Online account providers"; 23 + maintainers = with maintainers; [ kennyballou ]; 24 + license = licenses.gpl2Plus; 25 + platforms = platforms.linux; 26 + }; 27 + nativeBuildInputs = [ 28 + extra-cmake-modules 29 + intltool 30 + kdoctools 31 + ]; 32 + buildInputs = [ 33 + accounts-qt 34 + kaccounts-integration 35 + kcmutils 36 + kcoreaddons 37 + kdeclarative 38 + kio 39 + kpackage 40 + kwallet 41 + qtwebengine 42 + signond 43 + ]; 44 + }
+36
pkgs/applications/kde/kio-gdrive.nix
··· 1 + { mkDerivation 2 + , lib 3 + , extra-cmake-modules 4 + , kdoctools 5 + , kio 6 + , libkgapi 7 + , kcalendarcore 8 + , kcontacts 9 + , qtkeychain 10 + , libsecret 11 + , kaccounts-integration 12 + }: 13 + 14 + mkDerivation { 15 + pname = "kio-gdrive"; 16 + meta = with lib; { 17 + homepage = "https://github.com/KDE/kio-gdrive"; 18 + description = "KIO slave for Google APIs"; 19 + maintainers = with maintainers; [ kennyballou ]; 20 + license = licenses.gpl2Plus; 21 + platforms = platforms.linux; 22 + }; 23 + nativeBuildInputs = [ 24 + extra-cmake-modules 25 + kdoctools 26 + ]; 27 + buildInputs = [ 28 + kcalendarcore 29 + kcontacts 30 + kaccounts-integration 31 + libkgapi 32 + libsecret 33 + kio 34 + qtkeychain 35 + ]; 36 + }
+2 -2
pkgs/applications/networking/cluster/tilt/default.nix
··· 5 5 /* Do not use "dev" as a version. If you do, Tilt will consider itself 6 6 running in development environment and try to serve assets from the 7 7 source tree, which is not there once build completes. */ 8 - version = "0.18.10"; 8 + version = "0.20.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "tilt-dev"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-SvvvHGR3UPyV61MaoFB68SaZKUT3ItYOPT1a7AddxlY="; 14 + sha256 = "sha256-pUKKHrShED7yp5WSmHSbS+eiYs22Nm2/ouc2a8WYc38="; 15 15 }; 16 16 vendorSha256 = null; 17 17
+13
pkgs/development/libraries/libiio/cmake-fix-libxml2-find-package.patch
··· 1 + diff --color -ur a/CMakeLists.txt b/CMakeLists.txt 2 + --- a/CMakeLists.txt 2021-05-30 13:46:22.256040282 +0200 3 + +++ b/CMakeLists.txt 2021-05-30 14:15:42.530181216 +0200 4 + @@ -333,7 +333,7 @@ 5 + # So, try first to find the CMake module provided by libxml2 package, then fallback 6 + # on the CMake's FindLibXml2.cmake module (which can lack some definition, especially 7 + # in static build case). 8 + -find_package(LibXml2 QUIET NO_MODULE) 9 + +find_package(LibXml2 QUIET MODULE) 10 + if(DEFINED LIBXML2_VERSION_STRING) 11 + set(LIBXML2_FOUND ON) 12 + set(LIBXML2_INCLUDE_DIR ${LIBXML2_INCLUDE_DIRS}) 13 + Seulement dans b: good.patch
+4
pkgs/development/libraries/libiio/default.nix
··· 23 23 sha256 = "0psw67mzysdb8fkh8xpcwicm7z94k8plkcc8ymxyvl6inshq0mc7"; 24 24 }; 25 25 26 + # Revert after https://github.com/NixOS/nixpkgs/issues/125008 is 27 + # fixed properly 28 + patches = [ ./cmake-fix-libxml2-find-package.patch ]; 29 + 26 30 nativeBuildInputs = [ 27 31 cmake 28 32 flex
+4
pkgs/development/libraries/libjpeg-turbo/default.nix
··· 40 40 "-DENABLE_SHARED=${if enableShared then "1" else "0"}" 41 41 ] ++ lib.optionals enableJava [ 42 42 "-DWITH_JAVA=1" 43 + ] ++ lib.optionals stdenv.hostPlatform.isRiscV [ 44 + # https://github.com/libjpeg-turbo/libjpeg-turbo/issues/428 45 + # https://github.com/libjpeg-turbo/libjpeg-turbo/commit/88bf1d16786c74f76f2e4f6ec2873d092f577c75 46 + "-DFLOATTEST=fp-contract" 43 47 ]; 44 48 45 49 doInstallCheck = true;
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.12.1"; 5 + version = "0.12.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-X+mWuGm6hpTofoZSpM9U2GmYlETMH7MuYwk4ahFSyVE="; 11 + sha256 = "sha256-9EVlmdolr189vdnuA01UUrcrmZ9W0FtvCcJuuSX1nLs="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-2ABWPqhK2Cf4ipQH7XvRrd+ZscJhYPc3SV2cGT0apdg=";
+5 -5
pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix
··· 1 - { mkDerivation, base, containers, fetchgit, hedgehog 2 - , optparse-applicative, parsec, lib, template-haskell, text 1 + { mkDerivation, base, containers, fetchgit, hedgehog, lib 2 + , optparse-applicative, parsec, template-haskell, text 3 3 }: 4 4 mkDerivation { 5 5 pname = "dconf2nix"; 6 - version = "0.0.7"; 6 + version = "0.0.8"; 7 7 src = fetchgit { 8 8 url = "https://github.com/gvolpe/dconf2nix.git"; 9 - sha256 = "04p8di1ckv5fkfa61pjg5xp8vcw091lz1kw39lh4w8ks2zjwaha1"; 10 - rev = "34c523e920b79208c3b4c0ad371900b0948799f7"; 9 + sha256 = "19jk3p0ys3lbqk21lm37a7alkg2vhnmkvcffjqfxrw8p4737hxid"; 10 + rev = "6bf3d7d4ca9f553a9e1ba4a70a65640114d230b2"; 11 11 fetchSubmodules = true; 12 12 }; 13 13 isLibrary = true;
+3 -3
pkgs/development/tools/ijq/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "ijq"; 5 - version = "0.2.3"; 5 + version = "0.3.4"; 6 6 7 7 src = fetchgit { 8 8 url = "https://git.sr.ht/~gpanders/ijq"; 9 9 rev = "v${version}"; 10 - sha256 = "14n54jh5387jf97zhc7aidn7w60zp5624xbvq4jdbsh96apg3bk1"; 10 + sha256 = "ZKxEK6SPxEC0S5yXSzITPn0HhpJa4Bcf9X8/N+ZZAeA="; 11 11 }; 12 12 13 - vendorSha256 = "0xbni6lk6y3ig7pj2234fv7ra6b8qv0k8m3bvh59wwans8xpihzb"; 13 + vendorSha256 = "04KlXE2I8ZVDbyo9tBnFskLB6fo5W5/lPzSpo8KGqUU="; 14 14 15 15 nativeBuildInputs = [ makeWrapper ]; 16 16
+36
pkgs/misc/vscode-extensions/default.nix
··· 36 36 }; 37 37 }; 38 38 39 + alefragnani.project-manager = buildVscodeMarketplaceExtension { 40 + mktplcRef = { 41 + name = "project-manager"; 42 + publisher = "alefragnani"; 43 + version = "12.1.0"; 44 + sha256 = "sha256-fYBKmWn9pJh2V0fGdqVrXj9zIl8oTrZcBycDaMOXL/8="; 45 + }; 46 + meta = { 47 + license = lib.licenses.mit; 48 + }; 49 + }; 50 + 39 51 alexdima.copy-relative-path = buildVscodeMarketplaceExtension { 40 52 mktplcRef = { 41 53 name = "copy-relative-path"; ··· 132 120 }; 133 121 meta = with lib; { 134 122 license = licenses.mit; 123 + }; 124 + }; 125 + 126 + bradlc.vscode-tailwindcss = buildVscodeMarketplaceExtension { 127 + mktplcRef = { 128 + name = "vscode-tailwindcss"; 129 + publisher = "bradlc"; 130 + version = "0.6.6"; 131 + sha256 = "sha256-CRd+caKHFOXBnePr/LqNkzw0kRGYvNSkf4ecNgedpdA="; 132 + }; 133 + meta = with lib; { 134 + license = licenses.mpl20; 135 135 }; 136 136 }; 137 137 ··· 989 965 }; 990 966 meta = with lib; { 991 967 license = licenses.mit; 968 + }; 969 + }; 970 + 971 + svelte.svelte-vscode = buildVscodeMarketplaceExtension { 972 + mktplcRef = { 973 + name = "svelte-vscode"; 974 + publisher = "svelte"; 975 + version = "105.0.0"; 976 + sha256 = "sha256-my3RzwUW5MnajAbEnqxtrIR701XH+AKYLbnKD7ivASE="; 977 + }; 978 + meta = { 979 + license = lib.licenses.mit; 992 980 }; 993 981 }; 994 982
+3 -3
pkgs/tools/misc/dua/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "dua"; 5 - version = "2.12.0"; 5 + version = "2.12.1"; 6 6 7 7 buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 8 8 ··· 10 10 owner = "Byron"; 11 11 repo = "dua-cli"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-YCpWi5+p+d9YG8YEKRbppcX5/IizI1FnUfcnaoCGZNM="; 13 + sha256 = "sha256-ZJCixDh2+H+G+lVgxw9H61Xy4hMg+3MbhI+e7sU4GQU="; 14 14 # Remove unicode file names which leads to different checksums on HFS+ 15 15 # vs. other filesystems because of unicode normalisation. 16 16 extraPostFetch = '' ··· 18 18 ''; 19 19 }; 20 20 21 - cargoSha256 = "sha256-WFxDY4K257QE/tH4B2c3qOzVG3t1RUh4lWRMzqyBC14="; 21 + cargoSha256 = "sha256-rwgvyfjCBPe20xN6gNXBexjN/BwNhZjT1RtabKhCkJs="; 22 22 23 23 doCheck = false; 24 24
+12 -1
pkgs/tools/typesetting/lowdown/default.nix
··· 14 14 nativeBuildInputs = [ which ] 15 15 ++ lib.optionals stdenv.isDarwin [ fixDarwinDylibNames ]; 16 16 17 + preConfigure = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' 18 + echo 'HAVE_SANDBOX_INIT=0' > configure.local 19 + ''; 20 + 17 21 configurePhase = '' 18 22 runHook preConfigure 19 23 ./configure PREFIX=''${!outputDev} \ ··· 34 30 35 31 patches = lib.optional (!stdenv.hostPlatform.isStatic) ./shared.patch; 36 32 33 + doInstallCheck = stdenv.hostPlatform == stdenv.buildPlatform; 34 + installCheckPhase = '' 35 + runHook preInstallCheck 36 + echo '# TEST' > test.md 37 + $out/bin/lowdown test.md 38 + runHook postInstallCheck 39 + ''; 40 + 37 41 doCheck = stdenv.hostPlatform == stdenv.buildPlatform; 38 42 checkTarget = "regress"; 39 43 ··· 53 41 platforms = platforms.unix; 54 42 }; 55 43 } 56 -