Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 5f2ff17a d824f194

+158 -410
+1
maintainers/team-list.nix
··· 98 members = [ 99 astro 100 SuperSandro2000 101 ]; 102 scope = "Maintain packages used in the C3D2 hackspace"; 103 shortName = "c3d2";
··· 98 members = [ 99 astro 100 SuperSandro2000 101 + revol-xut 102 ]; 103 scope = "Maintain packages used in the C3D2 hackspace"; 104 shortName = "c3d2";
+6
nixos/modules/services/desktops/pipewire/wireplumber.nix
··· 50 default_access.properties["enable-flatpak-portal"] = false 51 ''; 52 }; 53 54 systemd.packages = [ cfg.package ]; 55
··· 50 default_access.properties["enable-flatpak-portal"] = false 51 ''; 52 }; 53 + environment.etc."wireplumber/bluetooth.lua.d/80-systemwide.lua" = lib.mkIf config.services.pipewire.systemWide { 54 + text = '' 55 + -- When running system-wide, logind-integration needs to be disabled. 56 + bluez_monitor.properties["with-logind"] = false 57 + ''; 58 + }; 59 60 systemd.packages = [ cfg.package ]; 61
+3 -3
pkgs/applications/blockchains/alfis/default.nix
··· 14 15 rustPlatform.buildRustPackage rec { 16 pname = "alfis"; 17 - version = "0.7.3"; 18 19 src = fetchFromGitHub { 20 owner = "Revertron"; 21 repo = "Alfis"; 22 rev = "v${version}"; 23 - sha256 = "sha256-P+usJCzf92WZ46mdaDbej59/RUzmFcMvlYXVe2VpgY0="; 24 }; 25 26 - cargoSha256 = "sha256-N5qHu0sCmIWtDYerWqMlD3qr8QtXLvEC7VqPEvnW2cw="; 27 28 checkFlags = [ 29 # these want internet access, disable them
··· 14 15 rustPlatform.buildRustPackage rec { 16 pname = "alfis"; 17 + version = "0.7.4"; 18 19 src = fetchFromGitHub { 20 owner = "Revertron"; 21 repo = "Alfis"; 22 rev = "v${version}"; 23 + sha256 = "sha256-mwiG9DwnCX/9REq/oNHi2n/l829Ozgum/WygIb+FV04="; 24 }; 25 26 + cargoSha256 = "sha256-ylSVyrI9LuctuoMZsZpIH7loBBjxE2onk6L19uV8zCQ="; 27 28 checkFlags = [ 29 # these want internet access, disable them
+13 -9
pkgs/applications/editors/hexedit/default.nix
··· 1 - { lib, stdenv, fetchurl, ncurses }: 2 3 stdenv.mkDerivation rec { 4 pname = "hexedit"; 5 - version = "1.2.13"; 6 7 - src = fetchurl { 8 - url = "http://rigaux.org/${pname}-${version}.src.tgz"; 9 - sha256 = "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka"; 10 }; 11 12 buildInputs = [ ncurses ]; 13 14 - meta = { 15 description = "View and edit files in hexadecimal or in ASCII"; 16 - homepage = "http://prigaux.chez.com/hexedit.html"; 17 - license = lib.licenses.gpl2Plus; 18 - platforms = lib.platforms.unix; 19 }; 20 }
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses }: 2 3 stdenv.mkDerivation rec { 4 pname = "hexedit"; 5 + version = "1.6"; 6 7 + src = fetchFromGitHub { 8 + owner = "pixel"; 9 + repo = "hexedit"; 10 + rev = version; 11 + sha256 = "sha256-fIgPbr7qmxyEga2YaAD0+NBM8LeDm/tVAq99ub7aiAI="; 12 }; 13 14 + nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = [ ncurses ]; 16 17 + meta = with lib; { 18 description = "View and edit files in hexadecimal or in ASCII"; 19 + homepage = "http://rigaux.org/hexedit.html"; 20 + license = licenses.gpl2Plus; 21 + platforms = platforms.unix; 22 + maintainers = with maintainers; [ delroth ]; 23 }; 24 }
-200
pkgs/applications/graphics/glimpse/default.nix
··· 1 - { stdenv 2 - , lib 3 - , fetchFromGitHub 4 - , substituteAll 5 - , pkg-config 6 - , intltool 7 - , babl 8 - , gegl 9 - , gtk2 10 - , glib 11 - , gdk-pixbuf 12 - , isocodes 13 - , pango 14 - , cairo 15 - , freetype 16 - , fontconfig 17 - , lcms 18 - , libpng 19 - , libjpeg 20 - , poppler 21 - , poppler_data 22 - , libtiff 23 - , libmng 24 - , librsvg 25 - , libwmf 26 - , zlib 27 - , libzip 28 - , ghostscript 29 - , aalib 30 - , shared-mime-info 31 - , python2 32 - , libexif 33 - , gettext 34 - , xorg 35 - , glib-networking 36 - , libmypaint 37 - , gexiv2 38 - , harfbuzz 39 - , mypaint-brushes1 40 - , libwebp 41 - , libheif 42 - , libgudev 43 - , openexr 44 - , AppKit 45 - , Cocoa 46 - , gtk-mac-integration-gtk2 47 - , libxslt 48 - , automake 49 - , autoconf 50 - , libtool 51 - , makeWrapper 52 - , autoreconfHook 53 - , gtk-doc 54 - , graphviz 55 - }: 56 - let 57 - python = python2.withPackages (pp: [ pp.pygtk ]); 58 - in 59 - stdenv.mkDerivation rec { 60 - pname = "glimpse"; 61 - version = "0.2.0"; 62 - 63 - outputs = [ "out" "dev" ]; 64 - 65 - src = fetchFromGitHub { 66 - owner = "glimpse-editor"; 67 - repo = "Glimpse"; 68 - rev = "v${version}"; 69 - sha256 = "sha256-qbZQmAo7fuJWWbn0QTyxAwAenZOdsGueUq5/3IV8Njc="; 70 - }; 71 - 72 - patches = [ 73 - # to remove compiler from the runtime closure, reference was retained via 74 - # gimp --version --verbose output 75 - (substituteAll { 76 - src = ./remove-cc-reference.patch; 77 - cc_version = stdenv.cc.cc.name; 78 - }) 79 - ../gimp/hardcode-plugin-interpreters.patch 80 - ]; 81 - 82 - postPatch = '' 83 - ln -s ${gtk-doc}/share/gtk-doc/data/gtk-doc.make . 84 - ''; 85 - 86 - nativeBuildInputs = [ 87 - autoreconfHook 88 - pkg-config 89 - intltool 90 - gettext 91 - automake 92 - autoconf 93 - makeWrapper 94 - gtk-doc 95 - libxslt 96 - libtool 97 - ]; 98 - 99 - buildInputs = [ 100 - babl 101 - gegl 102 - gtk2 103 - glib 104 - gdk-pixbuf 105 - pango 106 - cairo 107 - gexiv2 108 - harfbuzz 109 - isocodes 110 - freetype 111 - fontconfig 112 - lcms 113 - libpng 114 - libjpeg 115 - poppler 116 - poppler_data 117 - libtiff 118 - openexr 119 - libmng 120 - librsvg 121 - libwmf 122 - zlib 123 - libzip 124 - ghostscript 125 - aalib 126 - shared-mime-info 127 - libwebp 128 - libheif 129 - python 130 - libexif 131 - xorg.libXpm 132 - glib-networking 133 - libmypaint 134 - mypaint-brushes1 135 - ] ++ lib.optionals stdenv.isDarwin [ 136 - AppKit 137 - Cocoa 138 - gtk-mac-integration-gtk2 139 - ] ++ lib.optionals stdenv.isLinux [ 140 - libgudev 141 - ]; 142 - 143 - # needed by gimp-2.0.pc 144 - propagatedBuildInputs = [ 145 - gegl 146 - ]; 147 - 148 - # Check if librsvg was built with --disable-pixbuf-loader. 149 - PKG_CONFIG_GDK_PIXBUF_2_0_GDK_PIXBUF_MODULEDIR = "${librsvg}/${gdk-pixbuf.moduleDir}"; 150 - 151 - preAutoreconf = '' 152 - # The check runs before glib-networking is registered 153 - export GIO_EXTRA_MODULES="${glib-networking}/lib/gio/modules:$GIO_EXTRA_MODULES" 154 - ''; 155 - 156 - postFixup = '' 157 - wrapProgram $out/bin/glimpse-${lib.versions.majorMinor version} \ 158 - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ 159 - --prefix PATH ":" ${ lib.makeBinPath [ graphviz ] } 160 - ''; 161 - 162 - passthru = rec { 163 - # The declarations for `glimpse-with-plugins` wrapper, 164 - # used for determining plug-in installation paths 165 - majorVersion = "2.0"; 166 - targetPluginDir = "lib/glimpse/${majorVersion}/plug-ins"; 167 - targetScriptDir = "share/glimpse/${majorVersion}/scripts"; 168 - targetDataDir = "share/gimp/${majorVersion}"; 169 - targetLibDir = "lib/gimp/${majorVersion}"; 170 - 171 - # probably its a good idea to use the same gtk in plugins ? 172 - gtk = gtk2; 173 - }; 174 - 175 - configureFlags = [ 176 - "--without-webkit" # old version is required 177 - "--with-bug-report-url=https://github.com/NixOS/nixpkgs/issues/new" 178 - "--with-icc-directory=/run/current-system/sw/share/color/icc" 179 - # fix libdir in pc files (${exec_prefix} needs to be passed verbatim) 180 - "--libdir=\${exec_prefix}/lib" 181 - ]; 182 - 183 - # on Darwin, 184 - # test-eevl.c:64:36: error: initializer element is not a compile-time constant 185 - doCheck = !stdenv.isDarwin; 186 - 187 - enableParallelBuilding = true; 188 - 189 - meta = with lib; { 190 - description = "An open source image editor based on the GNU Image Manipulation Program"; 191 - longDescription = '' 192 - Glimpse is an open source image editor based on the GNU Image Manipulation Program (GIMP). The goal is to experiment with new ideas and expand the use of free software. 193 - ''; 194 - homepage = "https://glimpse-editor.org"; 195 - maintainers = with maintainers; [ ashkitten erictapen ]; 196 - license = licenses.gpl3Plus; 197 - platforms = platforms.unix; 198 - mainProgram = "glimpse"; 199 - }; 200 - }
···
-11
pkgs/applications/graphics/glimpse/plugins/default.nix
··· 1 - # Use `glimpse-with-plugins` package for Glimpse with all plug-ins. 2 - # If you just want a subset of plug-ins, you can specify them explicitly: 3 - # `glimpse-with-plugins.override { plugins = with glimpsePlugins; [ gap ]; }`. 4 - 5 - { gimpPlugins, glimpse }: 6 - 7 - # This attrs can be extended in the future if there happen to be glimpse-only 8 - # plugins or some that need further modification in order to work with Glimpse. 9 - gimpPlugins.overrideScope' (self: super: { 10 - gimp = glimpse; 11 - })
···
-13
pkgs/applications/graphics/glimpse/remove-cc-reference.patch
··· 1 - diff --git a/app/gimp-version.c b/app/gimp-version.c 2 - index b584398231..1b40a1570f 100644 3 - --- a/app/gimp-version.c 4 - +++ b/app/gimp-version.c 5 - @@ -230,7 +230,7 @@ gimp_version (gboolean be_verbose, 6 - GIMP_BUILD_ID, 7 - gimp_version_get_revision (), 8 - GIMP_BUILD_PLATFORM_FAMILY, 9 - - CC_VERSION, 10 - + "@cc_version@", 11 - lib_versions); 12 - g_free (lib_versions); 13 -
···
-32
pkgs/applications/graphics/glimpse/wrapper.nix
··· 1 - { lib, symlinkJoin, glimpse, makeWrapper, glimpsePlugins, gnome, plugins ? null }: 2 - 3 - let 4 - allPlugins = lib.filter (pkg: lib.isDerivation pkg && !pkg.meta.broken or false) (lib.attrValues glimpsePlugins); 5 - selectedPlugins = if plugins == null then allPlugins else plugins; 6 - extraArgs = map (x: x.wrapArgs or "") selectedPlugins; 7 - versionBranch = lib.versions.majorMinor glimpse.version; 8 - 9 - in 10 - symlinkJoin { 11 - name = "glimpse-with-plugins-${glimpse.version}"; 12 - 13 - paths = [ glimpse ] ++ selectedPlugins; 14 - 15 - nativeBuildInputs = [ makeWrapper ]; 16 - 17 - postBuild = '' 18 - for each in glimpse-${versionBranch} glimpse-console-${versionBranch}; do 19 - wrapProgram $out/bin/$each \ 20 - --set GIMP2_PLUGINDIR "$out/lib/glimpse/2.0" \ 21 - --set GIMP2_DATADIR "$out/share/glimpse/2.0" \ 22 - --prefix GTK_PATH : "${gnome.gnome-themes-extra}/lib/gtk-2.0" \ 23 - ${toString extraArgs} 24 - done 25 - 26 - for each in glimpse glimpse-console; do 27 - ln -sf "$each-${versionBranch}" $out/bin/$each 28 - done 29 - ''; 30 - 31 - inherit (glimpse) meta; 32 - }
···
+5 -5
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 { 2 - "packageVersion": "102.0-2", 3 "source": { 4 - "rev": "102.0-2", 5 - "sha256": "1gr17sk9ans6f2w3y6zr2cy5pz84br2b0kfi9pqz58yjz94q7jm2" 6 }, 7 "firefox": { 8 - "version": "102.0", 9 - "sha512": "c7dd6d8d74c46573b16d097a5e5d230669e5778cd680b3b6f30510e989d21543138ced3bb013998b76614aa380b28efd8542450c591d8b724e03bd163d012057" 10 } 11 }
··· 1 { 2 + "packageVersion": "102.0.1-1", 3 "source": { 4 + "rev": "102.0.1-1", 5 + "sha256": "10f9gngn04nwrhcqkdznx7209c4javscqz8arswyrn4c8rc5x6w5" 6 }, 7 "firefox": { 8 + "version": "102.0.1", 9 + "sha512": "a930d359fb81e473b963a93f6db5110871e9fd57f6d0f352513047d363d930dd4811e8dd786c2f6f3541c3871eb1c0169b718652d9ee076fd13a20f52af30417" 10 } 11 }
+7 -6
pkgs/applications/networking/cluster/kops/default.nix
··· 49 rec { 50 mkKops = generic; 51 52 - kops_1_21 = mkKops rec { 53 - version = "1.21.4"; 54 - sha256 = "sha256-f2xOVa3N/GH5IoI6H/QwDdKTeQoF/kEHX6lNytCZ9cs="; 55 - rev = "v${version}"; 56 - }; 57 - 58 kops_1_22 = mkKops rec { 59 version = "1.22.4"; 60 sha256 = "sha256-osU7yI77ZALGrAGuP8qAgv+ogDRn+BSVmcjPbi/WEKE="; ··· 66 sha256 = "sha256-9GANjGRS9QaJw+CEeMv/f+rEu37QV2YxMvSRSH6+3PM="; 67 rev = "v${version}"; 68 }; 69 }
··· 49 rec { 50 mkKops = generic; 51 52 kops_1_22 = mkKops rec { 53 version = "1.22.4"; 54 sha256 = "sha256-osU7yI77ZALGrAGuP8qAgv+ogDRn+BSVmcjPbi/WEKE="; ··· 60 sha256 = "sha256-9GANjGRS9QaJw+CEeMv/f+rEu37QV2YxMvSRSH6+3PM="; 61 rev = "v${version}"; 62 }; 63 + 64 + kops_1_24 = mkKops rec { 65 + version = "1.24.0"; 66 + sha256 = "sha256-4vvmwqsRSu8hZZE7fZUTv9v19wRtJvA5IX5w9jr5pEI="; 67 + rev = "v${version}"; 68 + }; 69 + 70 }
+8 -3
pkgs/applications/science/misc/bada-bib/default.nix
··· 10 , gnome 11 , gobject-introspection 12 , gtk4 13 , libxml2 14 , pkg-config 15 , python3Packages 16 - , wrapGAppsHook4 }: 17 18 python3Packages.buildPythonApplication rec { 19 pname = "bada-bib"; 20 - version = "0.6.2"; 21 format = "other"; 22 strictDeps = false; # https://github.com/NixOS/nixpkgs/issues/56943 23 ··· 25 owner = "RogerCrocker"; 26 repo = "BadaBib"; 27 rev = "refs/tags/v${version}"; 28 - sha256 = "sha256-3dXtBwqEqiXLjntmqLYeuwLv0RDb774+yOXc7vdf8+Y="; 29 }; 30 31 nativeBuildInputs = [ ··· 42 gdk-pixbuf 43 glib 44 gtk4 45 ]; 46 47 checkInputs = [
··· 10 , gnome 11 , gobject-introspection 12 , gtk4 13 + , gtksourceview5 14 + , libadwaita 15 , libxml2 16 , pkg-config 17 , python3Packages 18 + , wrapGAppsHook4 19 + }: 20 21 python3Packages.buildPythonApplication rec { 22 pname = "bada-bib"; 23 + version = "0.7.2"; 24 format = "other"; 25 strictDeps = false; # https://github.com/NixOS/nixpkgs/issues/56943 26 ··· 28 owner = "RogerCrocker"; 29 repo = "BadaBib"; 30 rev = "refs/tags/v${version}"; 31 + sha256 = "sha256-+b4Ko2srWZUs8zsH9jU+aiKQYZti3z2Bil8PogfpPlc="; 32 }; 33 34 nativeBuildInputs = [ ··· 45 gdk-pixbuf 46 glib 47 gtk4 48 + gtksourceview5 49 + libadwaita 50 ]; 51 52 checkInputs = [
+25
pkgs/applications/virtualization/nixpacks/default.nix
···
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "nixpacks"; 5 + version = "0.1.7"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "railwayapp"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-UxdK2e5VYcOEYdZn0oGRFIVGiwnPixiZ3rOnqJDSQO8="; 12 + }; 13 + 14 + cargoSha256 = "sha256-dJdPs4BJ1R2ZbGmGmvBerLPVqUHn5b/fz9C0kEnxA6U="; 15 + 16 + # skip test due FHS dependency 17 + doCheck = false; 18 + 19 + meta = with lib; { 20 + description = "App source + Nix packages + Docker = Image Resources"; 21 + homepage = "https://github.com/railwayapp/nixpacks"; 22 + license = licenses.mit; 23 + maintainers = [ maintainers.zoedsoupe ]; 24 + }; 25 + }
-7
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 120 path = doJailbreak super.path; 121 polyparse = overrideCabal (drv: { postPatch = "sed -i -e 's, <0.11, <0.12,' polyparse.cabal"; }) (doJailbreak super.polyparse); 122 primitive = doJailbreak super.primitive; 123 - # https://github.com/protolude/protolude/pull/136 124 - protolude = appendPatches [ 125 - (pkgs.fetchpatch { 126 - url = "https://github.com/protolude/protolude/commit/47820a36c25ea6f0c6e44382f7d4f3507358b8e7.diff"; 127 - sha256 = "sha256-PtHx5SyTgqFzI03YVeQD+RqglO6ASMQWSxdpy4ROMDY="; 128 - }) 129 - ] (doJailbreak super.protolude); 130 regex-posix = doJailbreak super.regex-posix; 131 resolv = doJailbreak super.resolv; 132 retrie = doDistribute (dontCheck self.retrie_1_2_0_1);
··· 120 path = doJailbreak super.path; 121 polyparse = overrideCabal (drv: { postPatch = "sed -i -e 's, <0.11, <0.12,' polyparse.cabal"; }) (doJailbreak super.polyparse); 122 primitive = doJailbreak super.primitive; 123 regex-posix = doJailbreak super.regex-posix; 124 resolv = doJailbreak super.resolv; 125 retrie = doDistribute (dontCheck self.retrie_1_2_0_1);
+9 -9
pkgs/development/libraries/libime/default.nix
··· 13 url = "https://download.fcitx-im.org/data/table.tar.gz"; 14 sha256 = "1dw7mgbaidv3vqy0sh8dbfv8631d2zwv5mlb7npf69a1f8y0b5k1"; 15 }; 16 - arpaVer = "20140820"; 17 arpa = fetchurl { 18 - url = "https://download.fcitx-im.org/data/lm_sc.3gm.arpa-${arpaVer}.tar.bz2"; 19 - sha256 = "0bqy3l7mif0yygjrcm65qallszgn17mvgyxhvz7a54zaamyan6vm"; 20 }; 21 - dictVer = "20211021"; 22 dict = fetchurl { 23 - url = "https://download.fcitx-im.org/data/dict.utf8-${dictVer}.tar.xz"; 24 - sha256 = "sha256-MAWX5vf3n3iEgP1mXeige/6QInBItafjn0D0OmKpgd8="; 25 }; 26 in 27 stdenv.mkDerivation rec { 28 pname = "libime"; 29 - version = "1.0.12"; 30 31 src = fetchFromGitHub { 32 owner = "fcitx"; 33 repo = "libime"; 34 - rev = version; 35 - sha256 = "sha256-7zm0eQgOZk7PYCBqq6FmPGIz1ZaVlEaT9QM5clhovuQ="; 36 fetchSubmodules = true; 37 }; 38
··· 13 url = "https://download.fcitx-im.org/data/table.tar.gz"; 14 sha256 = "1dw7mgbaidv3vqy0sh8dbfv8631d2zwv5mlb7npf69a1f8y0b5k1"; 15 }; 16 + arpaVer = "20220630"; 17 arpa = fetchurl { 18 + url = "https://download.fcitx-im.org/data/lm_sc.arpa-${arpaVer}.tar.xz"; 19 + sha256 = "sha256-jTsPqPoWuT0NRZDwLaBAKcJxNktZJcHJAoRcN0oqAL8="; 20 }; 21 + dictVer = "20220706"; 22 dict = fetchurl { 23 + url = "https://download.fcitx-im.org/data/dict-${dictVer}.tar.xz"; 24 + sha256 = "sha256-vNeR//eDr7QMHI6S2z+Dc0+Lk8nGriwV4eqHeLkHB3k="; 25 }; 26 in 27 stdenv.mkDerivation rec { 28 pname = "libime"; 29 + version = "unstable-2022-07-11"; 30 31 src = fetchFromGitHub { 32 owner = "fcitx"; 33 repo = "libime"; 34 + rev = "1adb14eb0617ef0eb0f07ad99684f43ca8a4395c"; 35 + sha256 = "sha256-UldswsnkMuJh2G/EdsFl4CS7Y2RSRAb1hYeWUA2MHPw="; 36 fetchSubmodules = true; 37 }; 38
+5
pkgs/development/libraries/physics/fastjet-contrib/default.nix
··· 18 patchShebangs ./configure ./utils/check.sh ./utils/install-sh 19 ''; 20 21 enableParallelBuilding = true; 22 23 doCheck = true;
··· 18 patchShebangs ./configure ./utils/check.sh ./utils/install-sh 19 ''; 20 21 + # Written in shell manually, does not support autoconf-style 22 + # --build=/--host= options: 23 + # Error: --build=x86_64-unknown-linux-gnu: unrecognised argument 24 + configurePlatforms = [ ]; 25 + 26 enableParallelBuilding = true; 27 28 doCheck = true;
+19 -6
pkgs/development/python-modules/bayespy/default.nix
··· 1 { stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder 2 - , pytest, nose, glibcLocales 3 , numpy, scipy, matplotlib, h5py }: 4 5 buildPythonPackage rec { ··· 15 sha256 = "ed0057dc22bd392df4b3bba23536117e1b2866e3201b12c5a37428d23421a5ba"; 16 }; 17 18 - checkInputs = [ pytest nose glibcLocales ]; 19 propagatedBuildInputs = [ numpy scipy matplotlib h5py ]; 20 21 - checkPhase = '' 22 - LC_ALL=en_US.utf-8 pytest -k 'not test_message_to_parents' 23 - ''; 24 25 meta = with lib; { 26 - broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 27 homepage = "http://www.bayespy.org"; 28 description = "Variational Bayesian inference tools for Python"; 29 license = licenses.mit;
··· 1 { stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder 2 + , pytestCheckHook, nose, glibcLocales, fetchpatch 3 , numpy, scipy, matplotlib, h5py }: 4 5 buildPythonPackage rec { ··· 15 sha256 = "ed0057dc22bd392df4b3bba23536117e1b2866e3201b12c5a37428d23421a5ba"; 16 }; 17 18 + patches = [ 19 + # Change from scipy to locally defined epsilon 20 + # https://github.com/bayespy/bayespy/pull/126 21 + (fetchpatch { 22 + name = "locally-defined-epsilon.patch"; 23 + url = "https://github.com/bayespy/bayespy/commit/9be53bada763e19c2b6086731a6aa542ad33aad0.patch"; 24 + sha256 = "sha256-KYt/0GcaNWR9K9/uS2OXgK7g1Z+Bayx9+IQGU75Mpuo="; 25 + }) 26 + ]; 27 + 28 + checkInputs = [ pytestCheckHook nose glibcLocales ]; 29 + 30 propagatedBuildInputs = [ numpy scipy matplotlib h5py ]; 31 32 + disabledTests = [ 33 + # Assertion error 34 + "test_message_to_parents" 35 + ]; 36 + 37 + pythonImportsCheck = [ "bayespy" ]; 38 39 meta = with lib; { 40 homepage = "http://www.bayespy.org"; 41 description = "Variational Bayesian inference tools for Python"; 42 license = licenses.mit;
+2 -2
pkgs/development/python-modules/pyinfra/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "pyinfra"; 21 - version = "2.1"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; ··· 27 owner = "Fizzadar"; 28 repo = pname; 29 rev = "v${version}"; 30 - hash = "sha256-frjPxSATvXgeACT4kThoiPu04Ez8bs8FIPdf5PVuiSg="; 31 }; 32 33 propagatedBuildInputs = [
··· 18 19 buildPythonPackage rec { 20 pname = "pyinfra"; 21 + version = "2.2"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; ··· 27 owner = "Fizzadar"; 28 repo = pname; 29 rev = "v${version}"; 30 + hash = "sha256-G0ApoSBs8RRq/sKxyyCB7uCIFNccDMMCqPMIAHuJLCI="; 31 }; 32 33 propagatedBuildInputs = [
+4 -4
pkgs/development/tools/vala-language-server/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "vala-language-server"; 18 - version = "0.48.4"; 19 20 src = fetchFromGitHub { 21 - owner = "Prince781"; 22 repo = pname; 23 rev = version; 24 - sha256 = "sha256-vCQ/j0DxG9sSEquPh9TtZ5hTADPh0d8sDIDSJdUDK4s="; 25 }; 26 27 passthru = { ··· 49 50 meta = with lib; { 51 description = "Code Intelligence for Vala & Genie"; 52 - homepage = "https://github.com/Prince781/vala-language-server"; 53 license = licenses.lgpl21Plus; 54 maintainers = with maintainers; [ andreasfelix ]; 55 platforms = platforms.linux;
··· 15 16 stdenv.mkDerivation rec { 17 pname = "vala-language-server"; 18 + version = "0.48.5"; 19 20 src = fetchFromGitHub { 21 + owner = "vala-lang"; 22 repo = pname; 23 rev = version; 24 + sha256 = "sha256-gntGnz8uqGz2EGwWWyty/N1ImaUKAPtXVZcjgp73SQM="; 25 }; 26 27 passthru = { ··· 49 50 meta = with lib; { 51 description = "Code Intelligence for Vala & Genie"; 52 + homepage = "https://github.com/vala-lang/vala-language-server"; 53 license = licenses.lgpl21Plus; 54 maintainers = with maintainers; [ andreasfelix ]; 55 platforms = platforms.linux;
+4 -4
pkgs/development/web/bun/default.nix
··· 4 aarch64-darwin = { 5 arch = "aarch64"; 6 shortName = "darwin"; 7 - sha256 = "06kf4dyb8y486r2bbpz8znnaxah9y2hwc9km3cigacfchi4dy28j"; 8 }; 9 10 x86_64-darwin = { 11 arch = "x64"; 12 shortName = "darwin"; 13 - sha256 = "06q8cajxra8lgyd1ap6iqzqdw31gkvlc6l2ma0mm22y63msgdn8b"; 14 }; 15 16 x86_64-linux = { 17 arch = "x64"; 18 shortName = "linux"; 19 - sha256 = "038w54yyk94042hg27hfm49w12xsg8wh0skza9l9iybvc9qlvh2i"; 20 }; 21 }; 22 dist = dists.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); 23 in 24 stdenvNoCC.mkDerivation rec { 25 - version = "0.1.1"; 26 pname = "bun"; 27 28 src = fetchurl {
··· 4 aarch64-darwin = { 5 arch = "aarch64"; 6 shortName = "darwin"; 7 + sha256 = "sha256-6mi1I8dga16dQLFy2+qa4dzDzlW6J0fdiv104Re3cZ0="; 8 }; 9 10 x86_64-darwin = { 11 arch = "x64"; 12 shortName = "darwin"; 13 + sha256 = "sha256-RGlpwRKLo4Y6uPvwubclIg3wJWePgKTDJvuzdxOrtfM="; 14 }; 15 16 x86_64-linux = { 17 arch = "x64"; 18 shortName = "linux"; 19 + sha256 = "sha256-Xjm+1wkAsC5Mn6Fm4MRdGyL4gpw2L++N0nKo7ofXLXs="; 20 }; 21 }; 22 dist = dists.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); 23 in 24 stdenvNoCC.mkDerivation rec { 25 + version = "0.1.2"; 26 pname = "bun"; 27 28 src = fetchurl {
+2 -2
pkgs/games/ddnet/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "ddnet"; 29 - version = "16.2"; 30 31 src = fetchFromGitHub { 32 owner = "ddnet"; 33 repo = pname; 34 rev = version; 35 - sha256 = "sha256-VQISfScZ11DYiZhQVc8EvXYEAN2/580peP34bBTuXPo="; 36 }; 37 38 nativeBuildInputs = [ cmake ninja pkg-config ];
··· 26 27 stdenv.mkDerivation rec { 28 pname = "ddnet"; 29 + version = "16.2.1"; 30 31 src = fetchFromGitHub { 32 owner = "ddnet"; 33 repo = pname; 34 rev = version; 35 + sha256 = "sha256-xDUvBsiQk7qZN9HEMCrCfxJSCZ/PruEdS5EjnHFufTA="; 36 }; 37 38 nativeBuildInputs = [ cmake ninja pkg-config ];
+2 -2
pkgs/os-specific/linux/cpuid/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "cpuid"; 9 - version = "20220224"; 10 11 src = fetchurl { 12 url = "http://etallen.com/cpuid/${pname}-${version}.src.tar.gz"; 13 - sha256 = "sha256-ShneKhGK7kT4Vs0b7PpaGSV0tZV3lTcqhuN9yiTaH50="; 14 }; 15 16 # For pod2man during the build process.
··· 6 7 stdenv.mkDerivation rec { 8 pname = "cpuid"; 9 + version = "20220620"; 10 11 src = fetchurl { 12 url = "http://etallen.com/cpuid/${pname}-${version}.src.tar.gz"; 13 + sha256 = "sha256-kVmhwJWm5ExspjBsUIC/4qe83iXo3Bbwb1+HTXcyyxo="; 14 }; 15 16 # For pod2man during the build process.
+4 -47
pkgs/os-specific/linux/dmidecode/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch }: 2 3 stdenv.mkDerivation rec { 4 pname = "dmidecode"; 5 - version = "3.2"; 6 7 src = fetchurl { 8 url = "mirror://savannah/dmidecode/dmidecode-${version}.tar.xz"; 9 - sha256 = "1pcfhcgs2ifdjwp7amnsr3lq95pgxpr150bjhdinvl505px0cw07"; 10 }; 11 12 - patches = [ 13 - # suggested patches for 3.2 according to https://www.nongnu.org/dmidecode/ 14 - (fetchpatch { 15 - name = "0001-fix_redfish_hostname_print_length.patch"; 16 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=fde47bb227b8fa817c88d7e10a8eb771c46de1df"; 17 - sha256 = "133nd0c72p68hnqs5m714167761r1pp6bd3kgbsrsrwdx40jlc3m"; 18 - }) 19 - (fetchpatch { 20 - name = "0002-add_logical_non-volatile_device_to_memory_device_types.patch"; 21 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=74dfb854b8199ddb0a27e89296fa565f4706cb9d"; 22 - sha256 = "0wdpmlcwmqdyyrsmyis8jb7cx3q6fnqpdpc5xly663dj841jcvwh"; 23 - }) 24 - (fetchpatch { 25 - name = "0003-only-scan-devmem-for-entry-point-on-x86.patch"; 26 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=e12ec26e19e02281d3e7258c3aabb88a5cf5ec1d"; 27 - sha256 = "1y2858n98bfa49syjinx911vza6mm7aa6xalvzjgdlyirhccs30i"; 28 - }) 29 - (fetchpatch { 30 - name = "0004-fix_formatting_of_tpm_table_output.patch"; 31 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=1d0db85949a5bdd96375f6131d393a11204302a6"; 32 - sha256 = "11s8jciw7xf2668v79qcq2c9w2gwvm3dkcik8dl9v74p654y1nr8"; 33 - }) 34 - (fetchpatch { 35 - name = "0005-fix_system-slot_information_for_pcie_ssd.patch"; 36 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=fd08479625b5845e4d725ab628628f7ebfccc407"; 37 - sha256 = "07l61wvsw1d8g14zzf6zm7l0ri9kkqz8j5n4h116qwhg1p2k49y4"; 38 - }) 39 - (fetchpatch { 40 - name = "0006-print_type_33_name_unconditionally.patch"; 41 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=65438a7ec0f4cddccf810136da6f280bd148af71"; 42 - sha256 = "0gqz576ccxys0c8217spf1qmw9lxi9xalw85jjqwsi2bj1k6vy4n"; 43 - }) 44 - (fetchpatch { 45 - name = "0007-dont_choke_on_invalid_processor_voltage.patch"; 46 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=5bb7eb173b72256f70c6b3f3916d7a444be93340"; 47 - sha256 = "1dkg4lq9kn2g1w5raz1gssn6zqk078zjqbnh9i32f822f727syhp"; 48 - }) 49 - (fetchpatch { 50 - name = "0008-fix_the_alignment_of_type_25_name.patch"; 51 - url = "https://git.savannah.gnu.org/cgit/dmidecode.git/patch/?id=557c3c373a9992d45d4358a6a2ccf53b03276f39"; 52 - sha256 = "18hc91pk7civyqrlilg3kn2nmp2warhh49xlbzrwqi7hgipyf12z"; 53 - }) 54 - ]; 55 - 56 makeFlags = [ 57 "prefix=$(out)" 58 "CC=${stdenv.cc.targetPrefix}cc" ··· 63 description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard"; 64 license = licenses.gpl2Plus; 65 platforms = platforms.linux; 66 }; 67 }
··· 1 + { lib, stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 pname = "dmidecode"; 5 + version = "3.4"; 6 7 src = fetchurl { 8 url = "mirror://savannah/dmidecode/dmidecode-${version}.tar.xz"; 9 + sha256 = "sha256-Q8uoUdhGfJl5zNvqsZLrZjjH06aX66Xdt3naiDdUIhI="; 10 }; 11 12 makeFlags = [ 13 "prefix=$(out)" 14 "CC=${stdenv.cc.targetPrefix}cc" ··· 19 description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard"; 20 license = licenses.gpl2Plus; 21 platforms = platforms.linux; 22 + maintainers = with maintainers; [ delroth ]; 23 }; 24 }
+2 -2
pkgs/servers/confluent-platform/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "confluent-platform"; 6 - version = "7.1.0"; 7 8 src = fetchurl { 9 url = "https://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}.tar.gz"; 10 - sha256 = "sha256-uoJQQZxUGniMLJk/BwwiNnpgYFcqJ+27GFQLEpsFxCw="; 11 }; 12 13 nativeBuildInputs = [ makeWrapper ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "confluent-platform"; 6 + version = "7.2.0"; 7 8 src = fetchurl { 9 url = "https://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}.tar.gz"; 10 + sha256 = "sha256-TtHPsrkmZ53mNL+/Ru2eHb0RKoXW/xSagrD6HF2s5ew="; 11 }; 12 13 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/tools/backup/kopia/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kopia"; 5 - version = "0.11.1"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-Az3l11J2IhgugPHP3cMT7b2iwQ/TCbdjYKvmHG3c7II="; 12 }; 13 14 - vendorSha256 = "sha256-phQ39li/iCoZFwmaKel6r4bRV8NZXbQhNgWdJbyqdIo="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "kopia"; 5 + version = "0.11.2"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-WxbD68KTO9hYhwwSSj7wwDGOiJdaLFdqJR+xw3dLfio="; 12 }; 13 14 + vendorSha256 = "sha256-i3hK1567KrxBSS3iGeNnKfsFuHsukRI6l9jG+UztY+c="; 15 16 doCheck = false; 17
+2 -2
pkgs/tools/inputmethods/fcitx5/default.nix
··· 41 in 42 stdenv.mkDerivation rec { 43 pname = "fcitx5"; 44 - version = "5.0.17"; 45 46 src = fetchFromGitHub { 47 owner = "fcitx"; 48 repo = pname; 49 rev = version; 50 - sha256 = "sha256-N98LhzfeCenjmHEva5PBeiLE/xNOdNT/6WA8Fe+O64c="; 51 }; 52 53 prePatch = ''
··· 41 in 42 stdenv.mkDerivation rec { 43 pname = "fcitx5"; 44 + version = "5.0.18"; 45 46 src = fetchFromGitHub { 47 owner = "fcitx"; 48 repo = pname; 49 rev = version; 50 + sha256 = "sha256-ZhjNUWzi74lr8Wtf0f+VN1kc9C6q2TJ9ogXeu3NJKbI="; 51 }; 52 53 prePatch = ''
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-chewing.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-chewing"; 13 - version = "5.0.11"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-w5ogK0jjvAEslXiCJvuhsS+z/Afy1KqDG7PzRQ+CMkY="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-chewing"; 13 + version = "5.0.12"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-3VC6hp8WN6Ttfw5TcpgjTUYxXJxmU6SUw7ZfjR+Laig="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix
··· 31 32 mkDerivation rec { 33 pname = "fcitx5-chinese-addons"; 34 - version = "5.0.13"; 35 36 src = fetchFromGitHub { 37 owner = "fcitx"; 38 repo = pname; 39 rev = version; 40 - sha256 = "sha256-umtt1xOgOEGVYVH0y/qRy3ihtKsVxYGvMGi4WFI9beY="; 41 }; 42 43 cmakeFlags = [
··· 31 32 mkDerivation rec { 33 pname = "fcitx5-chinese-addons"; 34 + version = "5.0.14"; 35 36 src = fetchFromGitHub { 37 owner = "fcitx"; 38 repo = pname; 39 rev = version; 40 + sha256 = "sha256-ZIOPzRXW+aaVKDIBC3N04wx662r8WOa205CgTeYmudQ="; 41 }; 42 43 cmakeFlags = [
+6 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-configtool.nix
··· 14 , xkeyboardconfig 15 , libxkbfile 16 , libXdmcp 17 , kcmSupport ? true 18 }: 19 20 mkDerivation rec { 21 pname = "fcitx5-configtool"; 22 - version = "5.0.13"; 23 24 src = fetchFromGitHub { 25 owner = "fcitx"; 26 repo = pname; 27 rev = version; 28 - sha256 = "sha256-sh3hd4hpqKKHdE8n5jf2v09ch2xUCCmapkp5tkeylKA="; 29 }; 30 31 cmakeFlags = [ ··· 50 ] ++ lib.optionals kcmSupport [ 51 kdeclarative 52 kwidgetsaddons 53 ]; 54 55 meta = with lib; {
··· 14 , xkeyboardconfig 15 , libxkbfile 16 , libXdmcp 17 + , plasma5Packages 18 + , plasma-framework 19 , kcmSupport ? true 20 }: 21 22 mkDerivation rec { 23 pname = "fcitx5-configtool"; 24 + version = "5.0.14"; 25 26 src = fetchFromGitHub { 27 owner = "fcitx"; 28 repo = pname; 29 rev = version; 30 + sha256 = "sha256-nfVdYW//ehjTFvb5ciu7ajoUB5NPZ/BkLkChJiBJPWY="; 31 }; 32 33 cmakeFlags = [ ··· 52 ] ++ lib.optionals kcmSupport [ 53 kdeclarative 54 kwidgetsaddons 55 + plasma5Packages.kiconthemes 56 + plasma-framework 57 ]; 58 59 meta = with lib; {
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "fcitx5-gtk"; 29 - version = "5.0.15"; 30 31 src = fetchFromGitHub { 32 owner = "fcitx"; 33 repo = pname; 34 rev = version; 35 - sha256 = "sha256-Vm2Un4PZugATjDz+mcEOnoapw3yyVf8Q55f5LO6juCU="; 36 }; 37 38 cmakeFlags = [
··· 26 27 stdenv.mkDerivation rec { 28 pname = "fcitx5-gtk"; 29 + version = "5.0.16"; 30 31 src = fetchFromGitHub { 32 owner = "fcitx"; 33 repo = pname; 34 rev = version; 35 + sha256 = "sha256-gdYtQyCczJOGkCjl7fVCjcKkhEW3wDO5HDYNfMhnb1g="; 36 }; 37 38 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-hangul.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-hangul"; 13 - version = "5.0.9"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-jT9k5QXW3fdG6s91NjFZ3lrjADy8wxf2SRiVDSnr6So="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-hangul"; 13 + version = "5.0.10"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-Hjnt9E24u1ycKreZf6Nb8cH7S3JKRlLSYAxhA11DMjs="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-lua.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-lua"; 13 - version = "5.0.8"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-VHGHKV5KLbfIMWLErLRNl8pOQOkYkc/f6VjZUSqluFk="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-lua"; 13 + version = "5.0.9"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-XeRMPbatXUudxo1EICL7z8V3slxkzo27f+D4xLjRtU4="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "fcitx5-m17n"; 16 - version = "5.0.9"; 17 18 src = fetchFromGitHub { 19 owner = "fcitx"; 20 repo = pname; 21 rev = version; 22 - sha256 = "sha256-JySEzWyPZqVrvgRA4Hc0ZSGLdS29n8uoSQsFEMK6kbs="; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "fcitx5-m17n"; 16 + version = "5.0.10"; 17 18 src = fetchFromGitHub { 19 owner = "fcitx"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-u4rW89ofuKYCn+NcvdIy0eU+lZ7Lp9kp/d0NdHW2V1s="; 23 }; 24 25 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-qt.nix
··· 13 14 mkDerivation rec { 15 pname = "fcitx5-qt"; 16 - version = "5.0.13"; 17 18 src = fetchFromGitHub { 19 owner = "fcitx"; 20 repo = pname; 21 rev = version; 22 - sha256 = "sha256-eX0tdNFGFiWrxBgghSGLHzKhK/eQ6DLLu7+ggNqTScg="; 23 }; 24 25 preConfigure = ''
··· 13 14 mkDerivation rec { 15 pname = "fcitx5-qt"; 16 + version = "5.0.14"; 17 18 src = fetchFromGitHub { 19 owner = "fcitx"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-LmE6HgNLoJmgJtJmubAIjFi8Xpnmw3hgqJh6HUcakzg="; 23 }; 24 25 preConfigure = ''
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-rime"; 13 - version = "5.0.13"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-/oQdBCDV5obSHw7dzdceC+zWHcNve3NDlA50GhvkK8o="; 20 }; 21 22 cmakeFlags = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-rime"; 13 + version = "5.0.14"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-EvYNeBmP2c+kDQ4GQU0SyGhxK4jolxMmhAaoVyINmfg="; 20 }; 21 22 cmakeFlags = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-table-extra.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-table-extra"; 13 - version = "5.0.10"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-fKT1nCr6kAFJEdacff4qBr3uI5fvIwMDPkHVFGTQf10="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-table-extra"; 13 + version = "5.0.11"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-tn493mSC+bvCgbKV1j+HV0Oh7n1ZufZoOccpK2i0JeY="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-table-other"; 13 - version = "5.0.9"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 - sha256 = "sha256-y/OY7m136VQvK75079OTFqLLR2o0NCIc5llljrJ91DU="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation rec { 12 pname = "fcitx5-table-other"; 13 + version = "5.0.10"; 14 15 src = fetchFromGitHub { 16 owner = "fcitx"; 17 repo = pname; 18 rev = version; 19 + sha256 = "sha256-jdc1W8aLkR2VcpjiEOJNApxNGgNqWreEBkW1pjuy1WU="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "fcitx5-unikey"; 14 - version = "5.0.10"; 15 16 src = fetchFromGitHub { 17 owner = "fcitx"; 18 repo = "fcitx5-unikey"; 19 rev = version; 20 - sha256 = "sha256-gGKLv+IUcLOE3jHDzK7oX2R76cUT9VXaVFGEyNN0tV4="; 21 }; 22 23 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
··· 11 12 stdenv.mkDerivation rec { 13 pname = "fcitx5-unikey"; 14 + version = "5.0.11"; 15 16 src = fetchFromGitHub { 17 owner = "fcitx"; 18 repo = "fcitx5-unikey"; 19 rev = version; 20 + sha256 = "sha256-pFFxTk97m/ThSrJglY+tSjjKCzXbj2EukdPg8fckoDU="; 21 }; 22 23 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
+4 -14
pkgs/top-level/all-packages.nix
··· 8085 8086 netsniff-ng = callPackage ../tools/networking/netsniff-ng { }; 8087 8088 nkeys = callPackage ../tools/system/nkeys { }; 8089 8090 nyxt = callPackage ../applications/networking/browsers/nyxt { }; ··· 27127 27128 gimpPlugins = recurseIntoAttrs (callPackage ../applications/graphics/gimp/plugins {}); 27129 27130 - glimpse = callPackage ../applications/graphics/glimpse { 27131 - autoreconfHook = buildPackages.autoreconfHook269; 27132 - lcms = lcms2; 27133 - inherit (darwin.apple_sdk.frameworks) AppKit Cocoa; 27134 - }; 27135 - 27136 - glimpse-with-plugins = callPackage ../applications/graphics/glimpse/wrapper.nix { 27137 - plugins = null; # All packaged plugins enabled, if not explicit plugin list supplied 27138 - }; 27139 - 27140 - glimpsePlugins = recurseIntoAttrs (callPackage ../applications/graphics/glimpse/plugins {}); 27141 - 27142 girara = callPackage ../applications/misc/girara { 27143 gtk = gtk3; 27144 }; ··· 34658 # Exceptions are versions that we need to keep to allow upgrades from older NixOS releases 34659 inherit (callPackage ../applications/networking/cluster/kops {}) 34660 mkKops 34661 - kops_1_21 34662 kops_1_22 34663 kops_1_23 34664 ; 34665 - kops = kops_1_23; 34666 34667 lguf-brightness = callPackage ../misc/lguf-brightness { }; 34668
··· 8085 8086 netsniff-ng = callPackage ../tools/networking/netsniff-ng { }; 8087 8088 + nixpacks = callPackage ../applications/virtualization/nixpacks { }; 8089 + 8090 nkeys = callPackage ../tools/system/nkeys { }; 8091 8092 nyxt = callPackage ../applications/networking/browsers/nyxt { }; ··· 27129 27130 gimpPlugins = recurseIntoAttrs (callPackage ../applications/graphics/gimp/plugins {}); 27131 27132 girara = callPackage ../applications/misc/girara { 27133 gtk = gtk3; 27134 }; ··· 34648 # Exceptions are versions that we need to keep to allow upgrades from older NixOS releases 34649 inherit (callPackage ../applications/networking/cluster/kops {}) 34650 mkKops 34651 kops_1_22 34652 kops_1_23 34653 + kops_1_24 34654 ; 34655 + kops = kops_1_24; 34656 34657 lguf-brightness = callPackage ../misc/lguf-brightness { }; 34658