Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub cc8df95c 450d04aa

+236 -123
+2 -2
pkgs/applications/audio/qmmp/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "qmmp"; 29 - version = "2.1.5"; 30 31 src = fetchurl { 32 url = "https://qmmp.ylsoftware.com/files/qmmp/2.1/${pname}-${version}.tar.bz2"; 33 - hash = "sha256-Jb4/KxnY1wtrUTbD+X04Wl7b9A2sZ92E/N1K+dVU95U="; 34 }; 35 36 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
··· 26 27 stdenv.mkDerivation rec { 28 pname = "qmmp"; 29 + version = "2.1.6"; 30 31 src = fetchurl { 32 url = "https://qmmp.ylsoftware.com/files/qmmp/2.1/${pname}-${version}.tar.bz2"; 33 + hash = "sha256-knqo5yCkcO/bFmM++z+SdiWzpDKK9ooV0wqlcIKj7so="; 34 }; 35 36 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
+1 -1
pkgs/applications/editors/eclipse/default.nix
··· 9 # use ./update.sh to help with updating for each quarterly release 10 # 11 # then, to test: 12 - # for e in cpp dsl embedcpp modeling platform sdk java jee committers rcp; do for s in pkgs pkgsCross.aarch64-multiplatform; do echo; echo $s $e; nix build -f default.nix ${s}.eclipses.eclipse-${e} -o eclipse-${s}-${e}; done; done 13 14 let 15 platform_major = "4";
··· 9 # use ./update.sh to help with updating for each quarterly release 10 # 11 # then, to test: 12 + # for e in cpp dsl embedcpp modeling platform sdk java jee committers rcp; do for s in pkgs pkgsCross.aarch64-multiplatform; do echo; echo $s $e; nix-build -A ${s}.eclipses.eclipse-${e} -o eclipse-${s}-${e}; done; done 13 14 let 15 platform_major = "4";
+14 -4
pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix
··· 30 31 let 32 gdbDefaultsTo = if gdbUseFixed then "${gdb}/bin/gdb" else "gdb"; 33 in 34 vscode-utils.buildVscodeMarketplaceExtension { 35 - mktplcRef = { 36 name = "cpptools"; 37 publisher = "ms-vscode"; 38 version = "1.17.3"; 39 - sha256 = "sha256-4mKCBqUCOndKEfsJqTIsfwEt+0CZI8QAhBj3Y4+wKlg="; 40 - arch = "linux-x64"; 41 }; 42 43 nativeBuildInputs = [ ··· 85 homepage = "https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools"; 86 license = lib.licenses.unfree; 87 maintainers = [ lib.maintainers.jraygauthier lib.maintainers.stargate01 ]; 88 - platforms = [ "x86_64-linux" ]; 89 }; 90 }
··· 30 31 let 32 gdbDefaultsTo = if gdbUseFixed then "${gdb}/bin/gdb" else "gdb"; 33 + supported = { 34 + x86_64-linux = { 35 + sha256 = "sha256-4mKCBqUCOndKEfsJqTIsfwEt+0CZI8QAhBj3Y4+wKlg="; 36 + arch = "linux-x64"; 37 + }; 38 + aarch64-linux = { 39 + sha256 = "sha256-Kjl8mEpayA1xMHEAMJ5k3Ctk3l48KlUBU5w3dL4pGWM="; 40 + arch = "linux-arm64"; 41 + }; 42 + }; 43 + 44 + base = supported.${stdenv.system} or (throw "unsupported platform ${stdenv.system}"); 45 in 46 vscode-utils.buildVscodeMarketplaceExtension { 47 + mktplcRef = base // { 48 name = "cpptools"; 49 publisher = "ms-vscode"; 50 version = "1.17.3"; 51 }; 52 53 nativeBuildInputs = [ ··· 95 homepage = "https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools"; 96 license = lib.licenses.unfree; 97 maintainers = [ lib.maintainers.jraygauthier lib.maintainers.stargate01 ]; 98 + platforms = [ "x86_64-linux" "aarch64-linux" ]; 99 }; 100 }
+11 -5
pkgs/applications/graphics/xournalpp/default.nix
··· 7 , pkg-config 8 9 , alsa-lib 10 , glib 11 , gsettings-desktop-schemas 12 , gtk3 ··· 25 26 stdenv.mkDerivation rec { 27 pname = "xournalpp"; 28 - version = "1.2.2"; 29 30 src = fetchFromGitHub { 31 owner = "xournalpp"; 32 - repo = pname; 33 rev = "v${version}"; 34 - sha256 = "sha256-6ND0Y+TzdN2rRI10cusgSK1sYMC55Wn5qFCHP4hsdes="; 35 }; 36 37 nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ]; 38 buildInputs = 39 lib.optionals stdenv.isLinux [ 40 alsa-lib ··· 56 57 buildFlags = [ "translations" ]; 58 59 - hardeningDisable = [ "format" ]; 60 - 61 meta = with lib; { 62 description = "Xournal++ is a handwriting Notetaking software with PDF annotation support"; 63 homepage = "https://xournalpp.github.io/"; ··· 65 license = licenses.gpl2Plus; 66 maintainers = with maintainers; [ andrew-d sikmir ]; 67 platforms = platforms.unix; 68 }; 69 }
··· 7 , pkg-config 8 9 , alsa-lib 10 + , binutils 11 , glib 12 , gsettings-desktop-schemas 13 , gtk3 ··· 26 27 stdenv.mkDerivation rec { 28 pname = "xournalpp"; 29 + version = "1.2.3"; 30 31 src = fetchFromGitHub { 32 owner = "xournalpp"; 33 + repo = "xournalpp"; 34 rev = "v${version}"; 35 + sha256 = "sha256-8UAAX/kixqiY9zEYs5eva0G2K2vlfnYd1yyVHMSfSeY="; 36 }; 37 38 + postPatch = '' 39 + substituteInPlace src/util/Stacktrace.cpp \ 40 + --replace-fail "addr2line" "${binutils}/bin/addr2line" 41 + ''; 42 + 43 nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ]; 44 + 45 buildInputs = 46 lib.optionals stdenv.isLinux [ 47 alsa-lib ··· 63 64 buildFlags = [ "translations" ]; 65 66 meta = with lib; { 67 description = "Xournal++ is a handwriting Notetaking software with PDF annotation support"; 68 homepage = "https://xournalpp.github.io/"; ··· 70 license = licenses.gpl2Plus; 71 maintainers = with maintainers; [ andrew-d sikmir ]; 72 platforms = platforms.unix; 73 + mainProgram = "xournalpp"; 74 }; 75 }
+2 -2
pkgs/applications/networking/irc/halloy/default.nix
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "halloy"; 18 - version = "2024.2"; 19 20 src = fetchFromGitHub { 21 owner = "squidowl"; 22 repo = "halloy"; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-SzjMoXISd4fMHoenF1CK3Yn8bfLq9INuOmt86QTcgk8="; 25 }; 26 27 cargoLock = {
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "halloy"; 18 + version = "2024.3"; 19 20 src = fetchFromGitHub { 21 owner = "squidowl"; 22 repo = "halloy"; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-9yEkM65c8R71oQ0C54xZqwRh609+HSaq4Hb8izNM52A="; 25 }; 26 27 cargoLock = {
+31 -6
pkgs/applications/office/jameica/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeDesktopItem, makeWrapper, wrapGAppsHook, ant, jdk, jre, gtk2, glib, xorg, Cocoa }: 2 3 let 4 _version = "2.10.4"; ··· 25 stdenv.mkDerivation rec { 26 pname = "jameica"; 27 inherit version; 28 - 29 - nativeBuildInputs = [ ant jdk wrapGAppsHook makeWrapper ]; 30 - buildInputs = lib.optionals stdenv.isLinux [ gtk2 glib xorg.libXtst ] 31 - ++ lib.optional stdenv.isDarwin Cocoa; 32 33 src = fetchFromGitHub { 34 owner = "willuhn"; ··· 37 hash = "sha256-MSVSd5DyVL+dcfTDv1M99hxickPwT2Pt6QGNsu6DGZI="; 38 }; 39 40 dontWrapGApps = true; 41 42 # there is also a build.gradle, but it only seems to be used to vendor 3rd party libraries 43 # and is not able to build the application itself 44 buildPhase = '' 45 - (cd build; ant -Dsystem.version=${version} init compile jar) 46 ''; 47 48 installPhase = '' 49 mkdir -p $out/libexec $out/lib $out/bin $out/share/{applications,jameica-${version},java}/ 50 51 # copy libraries except SWT ··· 57 install -Dm644 plugin.xml $out/share/java/ 58 install -Dm644 build/jameica-icon.png $out/share/pixmaps/jameica.png 59 cp ${desktopItem}/share/applications/* $out/share/applications/ 60 ''; 61 62 postFixup = ''
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeDesktopItem 5 + , makeWrapper 6 + , wrapGAppsHook 7 + , ant 8 + , jdk 9 + , jre 10 + , gtk2 11 + , glib 12 + , libXtst 13 + , Cocoa 14 + }: 15 16 let 17 _version = "2.10.4"; ··· 38 stdenv.mkDerivation rec { 39 pname = "jameica"; 40 inherit version; 41 42 src = fetchFromGitHub { 43 owner = "willuhn"; ··· 46 hash = "sha256-MSVSd5DyVL+dcfTDv1M99hxickPwT2Pt6QGNsu6DGZI="; 47 }; 48 49 + postPatch = '' 50 + # Fix jar timestamps for reproducibility 51 + substituteInPlace build/build.xml \ 52 + --replace-fail '<jar ' '<jar modificationtime="0" ' 53 + ''; 54 + 55 + nativeBuildInputs = [ ant jdk wrapGAppsHook makeWrapper ]; 56 + buildInputs = lib.optionals stdenv.isLinux [ gtk2 glib libXtst ] 57 + ++ lib.optional stdenv.isDarwin Cocoa; 58 + 59 dontWrapGApps = true; 60 61 # there is also a build.gradle, but it only seems to be used to vendor 3rd party libraries 62 # and is not able to build the application itself 63 buildPhase = '' 64 + runHook preBuild 65 + ant -f build -Dsystem.version=${version} init compile jar 66 + runHook postBuild 67 ''; 68 69 installPhase = '' 70 + runHook preInstall 71 + 72 mkdir -p $out/libexec $out/lib $out/bin $out/share/{applications,jameica-${version},java}/ 73 74 # copy libraries except SWT ··· 80 install -Dm644 plugin.xml $out/share/java/ 81 install -Dm644 build/jameica-icon.png $out/share/pixmaps/jameica.png 82 cp ${desktopItem}/share/applications/* $out/share/applications/ 83 + 84 + runHook postInstall 85 ''; 86 87 postFixup = ''
+6 -4
pkgs/applications/science/logic/elan/0001-dynamically-patchelf-binaries.patch
··· 2 index c51e76d..ae8159e 100644 3 --- a/src/elan-dist/src/component/package.rs 4 +++ b/src/elan-dist/src/component/package.rs 5 - @@ -56,6 +56,35 @@ fn unpack_without_first_dir<R: Read>(archive: &mut tar::Archive<R>, path: &Path) 6 entry 7 .unpack(&full_path) 8 .chain_err(|| ErrorKind::ExtractingPackage)?; ··· 26 + use std::os::unix::fs::PermissionsExt; 27 + let new_path = dest_path.with_extension("orig"); 28 + ::std::fs::rename(dest_path, &new_path)?; 29 - + ::std::fs::write(dest_path, format!(r#"#! @shell@ 30 - +LEAN_CC="${{LEAN_CC:-@cc@}}" exec -a "$0" {} "$@" -L {}/lib # use bundled libraries, but not bundled compiler that doesn't know about NIX_LDFLAGS 31 - +"#, new_path.to_str().unwrap(), dest_path.parent().unwrap().parent().unwrap().to_str().unwrap()))?; 32 + ::std::fs::set_permissions(dest_path, ::std::fs::Permissions::from_mode(0o755))?; 33 + } 34 +
··· 2 index c51e76d..ae8159e 100644 3 --- a/src/elan-dist/src/component/package.rs 4 +++ b/src/elan-dist/src/component/package.rs 5 + @@ -56,6 +56,37 @@ fn unpack_without_first_dir<R: Read>(archive: &mut tar::Archive<R>, path: &Path) 6 entry 7 .unpack(&full_path) 8 .chain_err(|| ErrorKind::ExtractingPackage)?; ··· 26 + use std::os::unix::fs::PermissionsExt; 27 + let new_path = dest_path.with_extension("orig"); 28 + ::std::fs::rename(dest_path, &new_path)?; 29 + + ::std::fs::write(dest_path, r#"#! @shell@ 30 + +dir="$(dirname "${BASH_SOURCE[0]}")" 31 + +# use bundled libraries, but not bundled compiler that doesn't know about NIX_LDFLAGS 32 + +LEAN_CC="${LEAN_CC:-@cc@}" exec -a "$0" "$dir/leanc.orig" "$@" -L"$dir/../lib" 33 + +"#)?; 34 + ::std::fs::set_permissions(dest_path, ::std::fs::Permissions::from_mode(0o755))?; 35 + } 36 +
+1 -9
pkgs/applications/science/logic/elan/default.nix
··· 1 - { stdenv, lib, runCommand, patchelf, makeWrapper, pkg-config, curl, runtimeShell, fetchpatch 2 , openssl, zlib, fetchFromGitHub, rustPlatform, libiconv }: 3 4 rustPlatform.buildRustPackage rec { ··· 23 buildFeatures = [ "no-self-update" ]; 24 25 patches = lib.optionals stdenv.isLinux [ 26 - # revert temporary directory creation, because it break the wrapper 27 - # https://github.com/NixOS/nixpkgs/pull/289941#issuecomment-1980778358 28 - (fetchpatch { 29 - url = "https://github.com/leanprover/elan/commit/bd54acaab75d08b3912ee1f051af8657f3a9cfdf.patch"; 30 - hash = "sha256-6If/wxWSea8Zjlp3fx9wh3D0TjmWZbvCuY9q5c2qJGA="; 31 - revert = true; 32 - }) 33 - 34 # Run patchelf on the downloaded binaries. 35 # This is necessary because Lean 4 is now dynamically linked. 36 (runCommand "0001-dynamically-patchelf-binaries.patch" {
··· 1 + { stdenv, lib, runCommand, patchelf, makeWrapper, pkg-config, curl, runtimeShell 2 , openssl, zlib, fetchFromGitHub, rustPlatform, libiconv }: 3 4 rustPlatform.buildRustPackage rec { ··· 23 buildFeatures = [ "no-self-update" ]; 24 25 patches = lib.optionals stdenv.isLinux [ 26 # Run patchelf on the downloaded binaries. 27 # This is necessary because Lean 4 is now dynamically linked. 28 (runCommand "0001-dynamically-patchelf-binaries.patch" {
+2 -2
pkgs/by-name/hu/hugo/package.nix
··· 10 11 buildGoModule rec { 12 pname = "hugo"; 13 - version = "0.123.7"; 14 15 src = fetchFromGitHub { 16 owner = "gohugoio"; 17 repo = "hugo"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-uUE694xbu508vny/sbxndGlsFXnBz45fLhieuK4sX/c="; 20 }; 21 22 vendorHash = "sha256-V7YRrC+6fOIjXOu7E0kIOZZt++4oFLPhmHeWmOVU3Xw=";
··· 10 11 buildGoModule rec { 12 pname = "hugo"; 13 + version = "0.123.8"; 14 15 src = fetchFromGitHub { 16 owner = "gohugoio"; 17 repo = "hugo"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-sL/LiQwbn3nD2eDFNuAbDHRGemTiBhTfb5IaugYL9dM="; 20 }; 21 22 vendorHash = "sha256-V7YRrC+6fOIjXOu7E0kIOZZt++4oFLPhmHeWmOVU3Xw=";
+3 -3
pkgs/by-name/my/mystmd/package.nix
··· 2 3 buildNpmPackage rec { 4 pname = "mystmd"; 5 - version = "1.1.45"; 6 7 src = fetchFromGitHub { 8 owner = "executablebooks"; 9 repo = "mystmd"; 10 rev = "mystmd@${version}"; 11 - hash = "sha256-qHlgAc1ddSVevH/82QCVXjIlht/RMcypTUcY+A/gRRg="; 12 }; 13 14 - npmDepsHash = "sha256-yEeATMpSEr20MJdzq8HWSSjRBd+rHEq2oMVOnKymWhY="; 15 16 dontNpmInstall = true; 17
··· 2 3 buildNpmPackage rec { 4 pname = "mystmd"; 5 + version = "1.1.46"; 6 7 src = fetchFromGitHub { 8 owner = "executablebooks"; 9 repo = "mystmd"; 10 rev = "mystmd@${version}"; 11 + hash = "sha256-rMmq2xArkbVIZRFGCYSl9D65LxUdyiZMR6CbYJbKNSw="; 12 }; 13 14 + npmDepsHash = "sha256-cwuKexK0S3pW0rJpjfbAHu7/MLSs8axbyX6BWJq2Ieo="; 15 16 dontNpmInstall = true; 17
+3 -3
pkgs/by-name/nu/numbat/package.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "numbat"; 12 - version = "1.10.1"; 13 14 src = fetchFromGitHub { 15 owner = "sharkdp"; 16 repo = "numbat"; 17 rev = "v${version}"; 18 - hash = "sha256-/jt1+21yem0q/dlc7z89MRaVrnllb9QLSQUo2f/9q8o="; 19 }; 20 21 - cargoHash = "sha256-8AA0LTw/9kd6yDme4N3/ANVkS67eoLrJviNhdqUftXM="; 22 23 buildInputs = lib.optionals stdenv.isDarwin [ 24 darwin.apple_sdk.frameworks.Security
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "numbat"; 12 + version = "1.11.0"; 13 14 src = fetchFromGitHub { 15 owner = "sharkdp"; 16 repo = "numbat"; 17 rev = "v${version}"; 18 + hash = "sha256-/XUDtyOk//J4S9NoRP/s5s6URkdzePhW7UQ4FxDgmhs="; 19 }; 20 21 + cargoHash = "sha256-uM4LmD78ZHAzx5purTO+MUstaSrR+j2LuSDUBI2tl3s="; 22 23 buildInputs = lib.optionals stdenv.isDarwin [ 24 darwin.apple_sdk.frameworks.Security
+11 -1
pkgs/development/interpreters/scsh/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48 }: 2 3 stdenv.mkDerivation { 4 pname = "scsh"; ··· 12 fetchSubmodules = true; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook ]; 16 buildInputs = [ scheme48 ]; 17 configureFlags = [ "--with-scheme48=${scheme48}" ]; ··· 22 license = licenses.bsd3; 23 maintainers = with maintainers; [ joachifm ]; 24 platforms = with platforms; unix; 25 }; 26 }
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48, fetchpatch }: 2 3 stdenv.mkDerivation { 4 pname = "scsh"; ··· 12 fetchSubmodules = true; 13 }; 14 15 + patches = [ 16 + # Don't not include util.h if libutil.h is available 17 + # https://github.com/scheme/scsh/pull/49 18 + (fetchpatch { 19 + url = "https://github.com/scheme/scsh/commit/b04e902de983761d7f432b2cfa364ca5d162a364.patch"; 20 + hash = "sha256-XSHzzCOBkraqW2re1ePoFl9tKQB81iQ0W9wvv83iGdA="; 21 + }) 22 + ]; 23 + 24 nativeBuildInputs = [ autoreconfHook ]; 25 buildInputs = [ scheme48 ]; 26 configureFlags = [ "--with-scheme48=${scheme48}" ]; ··· 31 license = licenses.bsd3; 32 maintainers = with maintainers; [ joachifm ]; 33 platforms = with platforms; unix; 34 + mainProgram = "scsh"; 35 }; 36 }
+5 -5
pkgs/development/libraries/ogre/default.nix
··· 112 in 113 { 114 ogre_14 = common { 115 - version = "14.1.2"; 116 - hash = "sha256-qPoC5VXA9IC1xiFLrvE7cqCZFkuiEM0OMowUXDlmhF4="; 117 - # https://github.com/OGRECave/ogre/blob/v14.1.2/Components/Overlay/CMakeLists.txt 118 - imguiVersion = "1.89.8"; 119 - imguiHash = "sha256-pkEm7+ZBYAYgAbMvXhmJyxm6DfyQWkECTXcTHTgfvuo="; 120 }; 121 122 ogre_13 = common {
··· 112 in 113 { 114 ogre_14 = common { 115 + version = "14.2.2"; 116 + hash = "sha256-85hpujmlM3N81mkiA80xx2C4GsdzWkP61bwdfmw1zt8="; 117 + # https://github.com/OGRECave/ogre/blob/v14.2.2/Components/Overlay/CMakeLists.txt 118 + imguiVersion = "1.90.4"; 119 + imguiHash = "sha256-7+Ay7H97tIO6CUsEyaQv4i9q2FCw98eQUq/KYZyfTAw="; 120 }; 121 122 ogre_13 = common {
+2 -2
pkgs/development/python-modules/aiomisc/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "aiomisc"; 25 - version = "17.3.48"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.7"; 29 30 src = fetchPypi { 31 inherit pname version; 32 - hash = "sha256-AVavnUsx/hUrT1gspfMNxtmyDLUty+ocPqRZAun036I="; 33 }; 34 35 nativeBuildInputs = [
··· 22 23 buildPythonPackage rec { 24 pname = "aiomisc"; 25 + version = "17.4.1"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.7"; 29 30 src = fetchPypi { 31 inherit pname version; 32 + hash = "sha256-SJyCxKncHRdWZUdsosOCLLRYG+ym8utXwAJjn3BRRHU="; 33 }; 34 35 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/apprise/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "apprise"; 22 - version = "1.7.3"; 23 format = "setuptools"; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 - hash = "sha256-MeKmOUB7uNJmJJ/Adf8xfp00/1lRxuFr/u/dwq9f6Ew="; 30 }; 31 32 nativeBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "apprise"; 22 + version = "1.7.4"; 23 format = "setuptools"; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 + hash = "sha256-716DAFEUDUIop1nFvC1oV7zH+GZN8+RPMPZGF84MenM="; 30 }; 31 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 365 366 buildPythonPackage rec { 367 pname = "boto3-stubs"; 368 - version = "1.34.58"; 369 pyproject = true; 370 371 disabled = pythonOlder "3.7"; 372 373 src = fetchPypi { 374 inherit pname version; 375 - hash = "sha256-FOqFo1X5hL19wX45I3v8JMOlVHn7y4fxfAAmm9laK0Q="; 376 }; 377 378 nativeBuildInputs = [
··· 365 366 buildPythonPackage rec { 367 pname = "boto3-stubs"; 368 + version = "1.34.59"; 369 pyproject = true; 370 371 disabled = pythonOlder "3.7"; 372 373 src = fetchPypi { 374 inherit pname version; 375 + hash = "sha256-Yb6i+oGvd1TBCG4WHkuDm7+MCOSKr27i/2rN2OtuFuU="; 376 }; 377 378 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "botocore-stubs"; 12 - version = "1.34.58"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.7"; ··· 17 src = fetchPypi { 18 pname = "botocore_stubs"; 19 inherit version; 20 - hash = "sha256-f4IO03oREJdEqMSuufAiTHEUtaqry9RvxsT2Cvafqj4="; 21 }; 22 23 nativeBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "botocore-stubs"; 12 + version = "1.34.59"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.7"; ··· 17 src = fetchPypi { 18 pname = "botocore_stubs"; 19 inherit version; 20 + hash = "sha256-uUbRzDRMafLopqi7EgZQ5Iwf0yEvdvWGurKw+K/qynU="; 21 }; 22 23 nativeBuildInputs = [
+21 -8
pkgs/development/python-modules/cherrypy/default.nix
··· 2 , stdenv 3 , buildPythonPackage 4 , cheroot 5 , fetchPypi 6 , jaraco-collections 7 , more-itertools ··· 24 25 buildPythonPackage rec { 26 pname = "cherrypy"; 27 - version = "18.8.0"; 28 - format = "setuptools"; 29 30 disabled = pythonOlder "3.7"; 31 32 src = fetchPypi { 33 pname = "CherryPy"; 34 inherit version; 35 - hash = "sha256-m0jPuoovFtW2QZzGV+bVHbAFujXF44JORyi7A7vH75s="; 36 }; 37 38 postPatch = '' 39 # Disable doctest plugin because times out 40 substituteInPlace pytest.ini \ 41 - --replace "--doctest-modules" "-vvv" \ 42 - --replace "-p pytest_cov" "" \ 43 - --replace "--no-cov-on-fail" "" 44 sed -i "/--cov/d" pytest.ini 45 ''; 46 ··· 50 51 propagatedBuildInputs = [ 52 cheroot 53 - portend 54 more-itertools 55 zc-lockfile 56 - jaraco-collections 57 ]; 58 59 nativeCheckInputs = [ ··· 126 meta = with lib; { 127 description = "Object-oriented HTTP framework"; 128 homepage = "https://cherrypy.dev/"; 129 license = licenses.bsd3; 130 maintainers = with maintainers; [ ]; 131 };
··· 2 , stdenv 3 , buildPythonPackage 4 , cheroot 5 + , fetchpatch 6 , fetchPypi 7 , jaraco-collections 8 , more-itertools ··· 25 26 buildPythonPackage rec { 27 pname = "cherrypy"; 28 + version = "18.9.0"; 29 + pyproject = true; 30 31 disabled = pythonOlder "3.7"; 32 33 src = fetchPypi { 34 pname = "CherryPy"; 35 inherit version; 36 + hash = "sha256-awbBkc5xqGRh8wVyoatX/8CfQxQ7qOQsEDx7M0ciDrE="; 37 }; 38 39 + patches = [ 40 + # Replace distutils.spawn.find_executable with shutil.which, https://github.com/cherrypy/cherrypy/pull/2023 41 + (fetchpatch { 42 + name = "remove-distutils.patch"; 43 + url = "https://github.com/cherrypy/cherrypy/commit/8a19dd5f1e712a326a3613b17e6fc900012ed09a.patch"; 44 + hash = "sha256-fXECX0CdU74usiq9GEkIG9CF+dueszblT4qOeF6B700="; 45 + }) 46 + ]; 47 + 48 postPatch = '' 49 + substituteInPlace pyproject.toml \ 50 + --replace-fail '"setuptools_scm_git_archive >= 1.1",' "" 51 # Disable doctest plugin because times out 52 substituteInPlace pytest.ini \ 53 + --replace-fail "--doctest-modules" "-vvv" \ 54 + --replace-fail "-p pytest_cov" "" \ 55 + --replace-fail "--no-cov-on-fail" "" 56 sed -i "/--cov/d" pytest.ini 57 ''; 58 ··· 62 63 propagatedBuildInputs = [ 64 cheroot 65 + jaraco-collections 66 more-itertools 67 + portend 68 zc-lockfile 69 ]; 70 71 nativeCheckInputs = [ ··· 138 meta = with lib; { 139 description = "Object-oriented HTTP framework"; 140 homepage = "https://cherrypy.dev/"; 141 + changelog = "https://github.com/cherrypy/cherrypy/blob/v${version}/CHANGES.rst"; 142 license = licenses.bsd3; 143 maintainers = with maintainers; [ ]; 144 };
+2 -2
pkgs/development/python-modules/google-cloud-asset/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "google-cloud-asset"; 22 - version = "3.24.3"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 - hash = "sha256-owRdxr4Kr6VehuHl/mZuZo7XqixX2glWwJ3F/tq82bc="; 30 }; 31 32 nativeBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "google-cloud-asset"; 22 + version = "3.25.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchPypi { 28 inherit pname version; 29 + hash = "sha256-JiPKFOew9Pd2NuY7wDlFQ/N06m9IRutWO+d/YJspry0="; 30 }; 31 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-dlp/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-dlp"; 17 - version = "3.15.3"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - hash = "sha256-9BCV3jYq8svvMbhKoQVMAlGYTggyi1qreG6T/yEIfy8="; 25 }; 26 27 nativeBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-dlp"; 17 + version = "3.16.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-DWmh96XviHVsmeVrivTDnq5A0hBog/DieUxcs2QmltU="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-netapp/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-netapp"; 17 - version = "0.3.7"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.8"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - hash = "sha256-g+tH/u2lEbQDdMPo/4+kl03+d9mrLzR2Eo/H8e8Niic="; 25 }; 26 27 nativeBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-netapp"; 17 + version = "0.3.8"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.8"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-va5Ql8GPMLszgjjSkI6am6IGQnEqvi+YSBcTFeu254U="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-websecurityscanner"; 16 - version = "1.14.2"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-loiKMV7guByukm9XBohVbCDsV607i8PXiQaJ8GZS6Go="; 24 }; 25 26 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-websecurityscanner"; 16 + version = "1.14.3"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-Wp88cJqlAaAkaemHzkgKuhU4v4dFpgn5Sf+uqGKTeWQ="; 24 }; 25 26 nativeBuildInputs = [
+41 -10
pkgs/development/python-modules/pytest-services/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , fetchPypi 4 - , isPy3k 5 - , requests 6 , psutil 7 , pytest 8 , setuptools-scm 9 , toml 10 , zc-lockfile 11 }: 12 13 buildPythonPackage rec { 14 pname = "pytest-services"; 15 version = "2.2.1"; 16 - format = "setuptools"; 17 18 - src = fetchPypi { 19 - inherit pname version; 20 - sha256 = "2da740487d08ea63dfdf718f5d4ba11e590c99ddf5481549edebf7a3a42ca536"; 21 }; 22 23 nativeBuildInputs = [ 24 setuptools-scm 25 toml ··· 33 zc-lockfile 34 ]; 35 36 - # no tests in PyPI tarball 37 - doCheck = false; 38 39 - pythonImportsCheck = [ "pytest_services" ]; 40 41 meta = with lib; { 42 description = "Services plugin for pytest testing framework"; 43 homepage = "https://github.com/pytest-dev/pytest-services"; 44 license = licenses.mit; 45 maintainers = with maintainers; [ dotlambda ]; 46 };
··· 1 { lib 2 , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 , psutil 6 + , pylibmc 7 , pytest 8 + , pytestCheckHook 9 + , pythonOlder 10 + , requests 11 + , setuptools 12 , setuptools-scm 13 , toml 14 + , mysqlclient 15 , zc-lockfile 16 }: 17 18 buildPythonPackage rec { 19 pname = "pytest-services"; 20 version = "2.2.1"; 21 + pyproject = true; 22 23 + disabled = pythonOlder "3.7"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "pytest-dev"; 27 + repo = "pytest-services"; 28 + rev = "refs/tags/${version}"; 29 + hash = "sha256-E/VcKcAb1ekypm5jP4lsSz1LYJTcTSed6i5OY5ihP30="; 30 }; 31 32 + patches = [ 33 + # Replace distutils.spawn.find_executable with shutil.which, https://github.com/pytest-dev/pytest-services/pull/46 34 + (fetchpatch { 35 + name = "replace-distutils.patch"; 36 + url = "https://github.com/pytest-dev/pytest-services/commit/e0e2a85434a2dcbcc0584299c5b2b751efe0b6db.patch"; 37 + hash = "sha256-hvr7EedfjfonHDn6v2slwUBqz1xQoF7Ez/kqAhZRXEc="; 38 + }) 39 + ]; 40 + 41 nativeBuildInputs = [ 42 setuptools-scm 43 toml ··· 51 zc-lockfile 52 ]; 53 54 + nativeCheckInputs = [ 55 + mysqlclient 56 + pylibmc 57 + pytestCheckHook 58 + ]; 59 + 60 + pythonImportsCheck = [ 61 + "pytest_services" 62 + ]; 63 64 + disabledTests = [ 65 + # Tests require binaries and additional parts 66 + "test_memcached" 67 + "test_mysql" 68 + "test_xvfb " 69 + ]; 70 71 meta = with lib; { 72 description = "Services plugin for pytest testing framework"; 73 homepage = "https://github.com/pytest-dev/pytest-services"; 74 + changelog = "https://github.com/pytest-dev/pytest-services/blob/${version}/CHANGES.rst"; 75 license = licenses.mit; 76 maintainers = with maintainers; [ dotlambda ]; 77 };
+2 -2
pkgs/development/python-modules/rns/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "rns"; 13 - version = "0.7.2"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "markqvist"; 20 repo = "Reticulum"; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-7j82M2T3bPypcXa3SsAflrN5T+d+JJlg3voYu8ALmXE="; 23 }; 24 25 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "rns"; 13 + version = "0.7.3"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "markqvist"; 20 repo = "Reticulum"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-QcYjqqeXBKx+Ef00Bw1OJMWDMdQgp/fqh3r5yhsa0Kg="; 23 }; 24 25 nativeBuildInputs = [
+2
pkgs/development/tools/dump_syms/default.nix
··· 7 8 # darwin 9 , Security 10 11 # tests 12 , firefox-esr-unwrapped ··· 43 openssl 44 ] ++ lib.optionals (stdenv.isDarwin) [ 45 Security 46 ]; 47 48 checkFlags = [
··· 7 8 # darwin 9 , Security 10 + , SystemConfiguration 11 12 # tests 13 , firefox-esr-unwrapped ··· 44 openssl 45 ] ++ lib.optionals (stdenv.isDarwin) [ 46 Security 47 + SystemConfiguration 48 ]; 49 50 checkFlags = [
+4 -4
pkgs/games/etlegacy/default.nix pkgs/by-name/et/etlegacy/package.nix
··· 15 , libogg 16 , libpng 17 , libtheora 18 - , lua 19 , minizip 20 , openal 21 , SDL2 ··· 23 , zlib 24 }: 25 let 26 - version = "2.81.1"; 27 28 fetchAsset = { asset, hash }: fetchurl { 29 url = "https://mirror.etlegacy.com/etmain/${asset}"; ··· 63 owner = "etlegacy"; 64 repo = "etlegacy"; 65 rev = "refs/tags/v${version}"; 66 - hash = "sha256-CGXtc51vaId/SHbD34ZeT0gPsrl7p2DEw/Kp+GBZIaA="; # 2.81.1 67 }; 68 69 nativeBuildInputs = [ ··· 83 libogg 84 libpng 85 libtheora 86 - lua 87 minizip 88 openal 89 SDL2
··· 15 , libogg 16 , libpng 17 , libtheora 18 + , lua5_4 19 , minizip 20 , openal 21 , SDL2 ··· 23 , zlib 24 }: 25 let 26 + version = "2.82.0"; 27 28 fetchAsset = { asset, hash }: fetchurl { 29 url = "https://mirror.etlegacy.com/etmain/${asset}"; ··· 63 owner = "etlegacy"; 64 repo = "etlegacy"; 65 rev = "refs/tags/v${version}"; 66 + hash = "sha256-yNVVEa+3+Swm3hgwm9cSLV0K88E37TgVVjh1uUl8O2o="; 67 }; 68 69 nativeBuildInputs = [ ··· 83 libogg 84 libpng 85 libtheora 86 + lua5_4 87 minizip 88 openal 89 SDL2
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 21 22 buildGoModule rec { 23 pname = "evcc"; 24 - version = "0.124.8"; 25 26 src = fetchFromGitHub { 27 owner = "evcc-io"; 28 repo = "evcc"; 29 rev = version; 30 - hash = "sha256-u4p22efkwpIY447O+F83pcz8C+iSwLHocsbZdRpgSmE="; 31 }; 32 33 vendorHash = "sha256-PZWMqv3R4Dq4cLtGNuvHCQ/GiYvlKJfSKEmBn0JYnb8=";
··· 21 22 buildGoModule rec { 23 pname = "evcc"; 24 + version = "0.124.9"; 25 26 src = fetchFromGitHub { 27 owner = "evcc-io"; 28 repo = "evcc"; 29 rev = version; 30 + hash = "sha256-I5dotao26D2fn1opQunUOFtJ/vS19lGumN6A21jkBjA="; 31 }; 32 33 vendorHash = "sha256-PZWMqv3R4Dq4cLtGNuvHCQ/GiYvlKJfSKEmBn0JYnb8=";
+2 -2
pkgs/shells/zsh/antidote/default.nix
··· 1 { lib, stdenv, fetchFromGitHub }: 2 3 stdenv.mkDerivation (finalAttrs: { 4 - version = "1.9.5"; 5 pname = "antidote"; 6 7 src = fetchFromGitHub { 8 owner = "mattmc3"; 9 repo = "antidote"; 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-eS2sf+N50N+oyk8wCp71hYF7WDagFBlTcAB/sFdhw9U="; 12 }; 13 14 dontPatch = true;
··· 1 { lib, stdenv, fetchFromGitHub }: 2 3 stdenv.mkDerivation (finalAttrs: { 4 + version = "1.9.6"; 5 pname = "antidote"; 6 7 src = fetchFromGitHub { 8 owner = "mattmc3"; 9 repo = "antidote"; 10 rev = "v${finalAttrs.version}"; 11 + hash = "sha256-8kNMCo/DwZvBwqh/434GqK7z4KXgkwZH9SazLbH8SfM="; 12 }; 13 14 dontPatch = true;
+2 -2
pkgs/tools/backup/zfs-replicate/default.nix
··· 11 12 buildPythonApplication rec { 13 pname = "zfs_replicate"; 14 - version = "3.2.9"; 15 pyproject = true; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-JMkZ4AexN++vPIPqzv9majdUkoAyos+Nm4Vlgeyx0Jg="; 20 }; 21 22 postPatch = ''
··· 11 12 buildPythonApplication rec { 13 pname = "zfs_replicate"; 14 + version = "3.2.10"; 15 pyproject = true; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-LEBCdrJZLddJm2nz2JLfwskU8roN/MZlr79exFEWnRI="; 20 }; 21 22 postPatch = ''
+49 -23
pkgs/tools/typesetting/fop/default.nix
··· 1 - { fetchurl, lib, stdenv, ant, jdk, runtimeShell }: 2 3 - stdenv.mkDerivation rec { 4 pname = "fop"; 5 version = "2.8"; 6 7 src = fetchurl { 8 - url = "mirror://apache/xmlgraphics/fop/source/${pname}-${version}-src.tar.gz"; 9 - sha256 = "sha256-b7Av17wu6Ar/npKOiwYqzlvBFSIuXTpqTacM1sxtBvc="; 10 }; 11 12 - buildInputs = [ ant jdk ]; 13 14 - # build only the "package" target, which generates the fop command. 15 buildPhase = '' 16 - export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8" 17 - ant -f fop/build.xml package 18 ''; 19 20 installPhase = '' 21 - mkdir -p $out/bin $out/lib $out/share/doc/fop 22 cp fop/build/*.jar fop/lib/*.jar $out/lib/ 23 cp -r README fop/examples/ $out/share/doc/fop/ 24 25 # There is a fop script in the source archive, but it has many impurities. 26 # Instead of patching out 90 % of the script, we write our own. 27 - cat > "$out/bin/fop" <<EOF 28 - #!${runtimeShell} 29 - java_exec_args="-Djava.awt.headless=true" 30 - exec ${jdk.jre}/bin/java \$java_exec_args -classpath "$out/lib/*" org.apache.fop.cli.Main "\$@" 31 - EOF 32 - chmod a+x $out/bin/fop 33 ''; 34 35 - meta = with lib; { 36 description = "XML formatter driven by XSL Formatting Objects (XSL-FO)"; 37 longDescription = '' 38 FOP is a Java application that reads a formatting object tree and then ··· 47 This package contains the fop command line tool. 48 ''; 49 homepage = "https://xmlgraphics.apache.org/fop/"; 50 - license = licenses.asl20; 51 - sourceProvenance = with sourceTypes; [ 52 fromSource 53 - binaryBytecode # source bundles dependencies as jars 54 ]; 55 - platforms = platforms.all; 56 - maintainers = with maintainers; [ bjornfor ]; 57 - mainProgram = "fop"; 58 }; 59 - }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , ant 5 + , jdk 6 + , jre 7 + , makeWrapper 8 + }: 9 10 + stdenv.mkDerivation (finalAttrs: { 11 pname = "fop"; 12 version = "2.8"; 13 14 src = fetchurl { 15 + url = "mirror://apache/xmlgraphics/fop/fop-${finalAttrs.version}-src.tar.gz"; 16 + hash = "sha256-b7Av17wu6Ar/npKOiwYqzlvBFSIuXTpqTacM1sxtBvc="; 17 }; 18 19 + postPatch = '' 20 + # Fix jar timestamps for reproducibility 21 + substituteInPlace fop/build.xml \ 22 + --replace-fail '<jar ' '<jar modificationtime="0" ' 23 + ''; 24 25 + nativeBuildInputs = [ 26 + ant 27 + jdk 28 + makeWrapper 29 + ]; 30 + 31 + # Note: not sure if this is needed anymore 32 + env.JAVA_TOOL_OPTIONS = "-Dfile.encoding=UTF8"; 33 + 34 buildPhase = '' 35 + runHook preBuild 36 + 37 + # build only the "package" target, which generates the fop command. 38 + ant -f fop/build.xml package 39 + 40 + runHook postBuild 41 ''; 42 43 installPhase = '' 44 + runHook preInstall 45 + 46 + mkdir -p $out/lib $out/share/doc/fop 47 cp fop/build/*.jar fop/lib/*.jar $out/lib/ 48 cp -r README fop/examples/ $out/share/doc/fop/ 49 50 # There is a fop script in the source archive, but it has many impurities. 51 # Instead of patching out 90 % of the script, we write our own. 52 + makeWrapper ${jre}/bin/java $out/bin/fop \ 53 + --add-flags "-Djava.awt.headless=true" \ 54 + --add-flags "-classpath $out/lib/\*" \ 55 + --add-flags "org.apache.fop.cli.Main" 56 + 57 + runHook postInstall 58 ''; 59 60 + meta = { 61 + changelog = "https://xmlgraphics.apache.org/fop/changes.html"; 62 description = "XML formatter driven by XSL Formatting Objects (XSL-FO)"; 63 longDescription = '' 64 FOP is a Java application that reads a formatting object tree and then ··· 73 This package contains the fop command line tool. 74 ''; 75 homepage = "https://xmlgraphics.apache.org/fop/"; 76 + license = lib.licenses.asl20; 77 + mainProgram = "fop"; 78 + maintainers = with lib.maintainers; [ bjornfor tomasajt ]; 79 + platforms = jre.meta.platforms; 80 + sourceProvenance = with lib.sourceTypes; [ 81 fromSource 82 + binaryBytecode # source bundles dependencies as jars 83 ]; 84 }; 85 + })
+3 -7
pkgs/top-level/all-packages.nix
··· 1785 1786 dysk = callPackage ../tools/filesystems/dysk { }; 1787 1788 - etlegacy = callPackage ../games/etlegacy { lua = lua5_4; }; 1789 - 1790 fastfetch = callPackage ../tools/misc/fastfetch { 1791 stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv; 1792 }; ··· 5406 texlive = callPackage ../tools/typesetting/tex/texlive { }; 5407 inherit (texlive.schemes) texliveBasic texliveBookPub texliveConTeXt texliveFull texliveGUST texliveInfraOnly texliveMedium texliveMinimal texliveSmall texliveTeTeX; 5408 5409 - fop = callPackage ../tools/typesetting/fop { 5410 - jdk = openjdk8; 5411 - }; 5412 5413 fondu = callPackage ../tools/misc/fondu { 5414 inherit (darwin.apple_sdk.frameworks) CoreServices; ··· 7596 }; 7597 7598 dump_syms = callPackage ../development/tools/dump_syms { 7599 - inherit (darwin.apple_sdk.frameworks) Security; 7600 }; 7601 7602 dumpasn1 = callPackage ../tools/security/dumpasn1 { }; ··· 36288 inherit (gnome2) libgnomecanvas; 36289 }; 36290 36291 - xournalpp = callPackage ../applications/graphics/xournalpp { 36292 lua = lua5_3; 36293 }; 36294
··· 1785 1786 dysk = callPackage ../tools/filesystems/dysk { }; 1787 1788 fastfetch = callPackage ../tools/misc/fastfetch { 1789 stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv; 1790 }; ··· 5404 texlive = callPackage ../tools/typesetting/tex/texlive { }; 5405 inherit (texlive.schemes) texliveBasic texliveBookPub texliveConTeXt texliveFull texliveGUST texliveInfraOnly texliveMedium texliveMinimal texliveSmall texliveTeTeX; 5406 5407 + fop = callPackage ../tools/typesetting/fop { }; 5408 5409 fondu = callPackage ../tools/misc/fondu { 5410 inherit (darwin.apple_sdk.frameworks) CoreServices; ··· 7592 }; 7593 7594 dump_syms = callPackage ../development/tools/dump_syms { 7595 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 7596 }; 7597 7598 dumpasn1 = callPackage ../tools/security/dumpasn1 { }; ··· 36284 inherit (gnome2) libgnomecanvas; 36285 }; 36286 36287 + xournalpp = darwin.apple_sdk_11_0.callPackage ../applications/graphics/xournalpp { 36288 lua = lua5_3; 36289 }; 36290