mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-04 14:21:02 +03:00
Merge master into staging-next
This commit is contained in:
commit
50812f5204
@ -47,10 +47,6 @@ Release branch. Used to specify that a package is not going to receive updates t
|
|||||||
|
|
||||||
The package’s homepage. Example: `https://www.gnu.org/software/hello/manual/`
|
The package’s homepage. Example: `https://www.gnu.org/software/hello/manual/`
|
||||||
|
|
||||||
### `repository` {#var-meta-repository}
|
|
||||||
|
|
||||||
A webpage where the package's source code can be viewed. `https` links are preferred if available. Automatically set to a default value if the package uses a `fetchFrom*` fetcher for its `src`. Example: `https://github.com/forthy42/gforth`
|
|
||||||
|
|
||||||
### `downloadPage` {#var-meta-downloadPage}
|
### `downloadPage` {#var-meta-downloadPage}
|
||||||
|
|
||||||
The page where a link to the current version can be found. Example: `https://ftp.gnu.org/gnu/hello/`
|
The page where a link to the current version can be found. Example: `https://ftp.gnu.org/gnu/hello/`
|
||||||
|
@ -143,6 +143,8 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
|
|||||||
|
|
||||||
- [Mealie](https://nightly.mealie.io/), a self-hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in NuxtJS for a pleasant user experience for the whole family. Available as [services.mealie](#opt-services.mealie.enable)
|
- [Mealie](https://nightly.mealie.io/), a self-hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in NuxtJS for a pleasant user experience for the whole family. Available as [services.mealie](#opt-services.mealie.enable)
|
||||||
|
|
||||||
|
- [Uni-Sync](https://github.com/EightB1ts/uni-sync), a synchronization tool for Lian Li Uni Controllers. Available as [hardware.uni-sync](#opt-hardware.uni-sync.enable)
|
||||||
|
|
||||||
## Backward Incompatibilities {#sec-release-24.05-incompatibilities}
|
## Backward Incompatibilities {#sec-release-24.05-incompatibilities}
|
||||||
|
|
||||||
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
||||||
|
117
nixos/modules/hardware/uni-sync.nix
Normal file
117
nixos/modules/hardware/uni-sync.nix
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
{ config
|
||||||
|
, lib
|
||||||
|
, pkgs
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.hardware.uni-sync;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
meta.maintainers = with maintainers; [ yunfachi ];
|
||||||
|
|
||||||
|
options.hardware.uni-sync = {
|
||||||
|
enable = mkEnableOption (mdDoc "udev rules and software for Lian Li Uni Controllers");
|
||||||
|
package = mkPackageOption pkgs "uni-sync" { };
|
||||||
|
|
||||||
|
devices = mkOption {
|
||||||
|
default = [ ];
|
||||||
|
example = literalExpression ''
|
||||||
|
[
|
||||||
|
{
|
||||||
|
device_id = "VID:1111/PID:11111/SN:1111111111";
|
||||||
|
sync_rgb = true;
|
||||||
|
channels = [
|
||||||
|
{
|
||||||
|
mode = "PWM";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 100;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 54;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 0;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
device_id = "VID:1010/PID:10101/SN:1010101010";
|
||||||
|
sync_rgb = false;
|
||||||
|
channels = [
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 0;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
]
|
||||||
|
'';
|
||||||
|
description = mdDoc "List of controllers with their configurations.";
|
||||||
|
type = types.listOf (types.submodule {
|
||||||
|
options = {
|
||||||
|
device_id = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
example = "VID:1111/PID:11111/SN:1111111111";
|
||||||
|
description = mdDoc "Unique device ID displayed at each startup.";
|
||||||
|
};
|
||||||
|
sync_rgb = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
example = true;
|
||||||
|
description = mdDoc "Enable ARGB header sync.";
|
||||||
|
};
|
||||||
|
channels = mkOption {
|
||||||
|
default = [ ];
|
||||||
|
example = literalExpression ''
|
||||||
|
[
|
||||||
|
{
|
||||||
|
mode = "PWM";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 100;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 54;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "Manual";
|
||||||
|
speed = 0;
|
||||||
|
}
|
||||||
|
]
|
||||||
|
'';
|
||||||
|
description = mdDoc "List of channels connected to the controller.";
|
||||||
|
type = types.listOf (types.submodule {
|
||||||
|
options = {
|
||||||
|
mode = mkOption {
|
||||||
|
type = types.enum [ "Manual" "PWM" ];
|
||||||
|
default = "Manual";
|
||||||
|
example = "PWM";
|
||||||
|
description = mdDoc "\"PWM\" to enable PWM sync. \"Manual\" to set speed.";
|
||||||
|
};
|
||||||
|
speed = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
default = "50";
|
||||||
|
example = "100";
|
||||||
|
description = mdDoc "Fan speed as percentage (clamped between 0 and 100).";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment.etc."uni-sync/uni-sync.json".text = mkIf (cfg.devices != [ ]) (builtins.toJSON { configs = cfg.devices; });
|
||||||
|
|
||||||
|
environment.systemPackages = [ cfg.package ];
|
||||||
|
services.udev.packages = [ cfg.package ];
|
||||||
|
};
|
||||||
|
}
|
@ -98,6 +98,7 @@
|
|||||||
./hardware/tuxedo-keyboard.nix
|
./hardware/tuxedo-keyboard.nix
|
||||||
./hardware/ubertooth.nix
|
./hardware/ubertooth.nix
|
||||||
./hardware/uinput.nix
|
./hardware/uinput.nix
|
||||||
|
./hardware/uni-sync.nix
|
||||||
./hardware/usb-modeswitch.nix
|
./hardware/usb-modeswitch.nix
|
||||||
./hardware/usb-storage.nix
|
./hardware/usb-storage.nix
|
||||||
./hardware/video/amdgpu-pro.nix
|
./hardware/video/amdgpu-pro.nix
|
||||||
|
@ -1,19 +1,21 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
with lib;
|
let
|
||||||
|
cfg = config.programs.partition-manager;
|
||||||
|
in {
|
||||||
|
meta.maintainers = [ lib.maintainers.oxalica ];
|
||||||
|
|
||||||
{
|
|
||||||
meta.maintainers = [ maintainers.oxalica ];
|
|
||||||
|
|
||||||
###### interface
|
|
||||||
options = {
|
options = {
|
||||||
programs.partition-manager.enable = mkEnableOption (lib.mdDoc "KDE Partition Manager");
|
programs.partition-manager = {
|
||||||
|
enable = lib.mkEnableOption (lib.mdDoc "KDE Partition Manager");
|
||||||
|
|
||||||
|
package = lib.mkPackageOption pkgs [ "libsForQt5" "partitionmanager" ] { };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
###### implementation
|
config = lib.mkIf config.programs.partition-manager.enable {
|
||||||
config = mkIf config.programs.partition-manager.enable {
|
services.dbus.packages = [ cfg.package.kpmcore ];
|
||||||
services.dbus.packages = [ pkgs.libsForQt5.kpmcore ];
|
|
||||||
# `kpmcore` need to be installed to pull in polkit actions.
|
# `kpmcore` need to be installed to pull in polkit actions.
|
||||||
environment.systemPackages = [ pkgs.libsForQt5.kpmcore pkgs.libsForQt5.partitionmanager ];
|
environment.systemPackages = [ cfg.package.kpmcore cfg.package ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -286,6 +286,7 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
programs.kdeconnect.package = kdePackages.kdeconnect-kde;
|
programs.kdeconnect.package = kdePackages.kdeconnect-kde;
|
||||||
|
programs.partition-manager.package = kdePackages.partitionmanager;
|
||||||
|
|
||||||
# FIXME: ugly hack. See #292632 for details.
|
# FIXME: ugly hack. See #292632 for details.
|
||||||
system.userActivationScripts.rebuildSycoca = activationScript;
|
system.userActivationScripts.rebuildSycoca = activationScript;
|
||||||
|
69
pkgs/applications/audio/famistudio/build-native-wrapper.nix
Normal file
69
pkgs/applications/audio/famistudio/build-native-wrapper.nix
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{ depname
|
||||||
|
, version
|
||||||
|
, src
|
||||||
|
, sourceRoot
|
||||||
|
, stdenv
|
||||||
|
, lib
|
||||||
|
, patches ? []
|
||||||
|
, extraPostPatch ? ""
|
||||||
|
, buildInputs ? []
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
rebuildscriptName = if stdenv.hostPlatform.isLinux then
|
||||||
|
"build_linux"
|
||||||
|
else if stdenv.hostPlatform.isDarwin then
|
||||||
|
"build_macos"
|
||||||
|
else throw "Don't know how to rebuild FamiStudio's vendored ${depname} for ${stdenv.hostPlatform.system}";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "famistudio-nativedep-${depname}";
|
||||||
|
inherit version src sourceRoot patches buildInputs;
|
||||||
|
|
||||||
|
postPatch = let
|
||||||
|
libnameBase = lib.optionalString stdenv.hostPlatform.isLinux "lib" + depname;
|
||||||
|
in ''
|
||||||
|
# Use one name for build script, eases with patching
|
||||||
|
mv ${rebuildscriptName}.sh build.sh
|
||||||
|
|
||||||
|
# Scripts use hardcoded compilers and try to copy built libraries into FamiStudio's build tree
|
||||||
|
# Not all scripts use the same compiler, so don't fail on replacing that
|
||||||
|
substituteInPlace build.sh \
|
||||||
|
--replace-fail '../../FamiStudio/' "$out/lib/" \
|
||||||
|
--replace-quiet 'g++' "$CXX"
|
||||||
|
|
||||||
|
# Replacing gcc via sed, would break -static-libgcc otherwise
|
||||||
|
sed -i -e "s/^gcc/$CC/g" build.sh
|
||||||
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||||||
|
# Darwin rebuild scripts try to make a universal2 dylib
|
||||||
|
# - build dylib for non-hostPlatform
|
||||||
|
# - copy built library into special directory for later packaging script
|
||||||
|
# - join two dylibs together into a universal2 dylib
|
||||||
|
# Remove everything we don't need
|
||||||
|
sed -ri \
|
||||||
|
-e '/-target ${if stdenv.hostPlatform.isx86_64 then "arm64" else "x86_64"}/d' \
|
||||||
|
-e '/..\/..\/Setup/d' \
|
||||||
|
build.sh
|
||||||
|
|
||||||
|
# Replace joining multi-arch dylibs with copying dylib for target arch
|
||||||
|
substituteInPlace build.sh \
|
||||||
|
--replace-fail 'lipo -create -output ${libnameBase}.dylib' 'cp ${libnameBase}_${if stdenv.hostPlatform.isx86_64 then "x86_64" else "arm64"}.dylib ${libnameBase}.dylib #'
|
||||||
|
'' + extraPostPatch;
|
||||||
|
|
||||||
|
dontConfigure = true;
|
||||||
|
dontInstall = true; # rebuild script automatically installs
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
|
mkdir -p $out/lib
|
||||||
|
|
||||||
|
# Delete all prebuilt libraries, make sure everything is rebuilt
|
||||||
|
find . -name '*.so' -or -name '*.dylib' -or -name '*.a' -delete
|
||||||
|
|
||||||
|
# When calling normally, an error won't cause derivation to fail
|
||||||
|
source ./build.sh
|
||||||
|
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
}
|
@ -1,59 +1,108 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
, stdenv
|
, lib
|
||||||
, fetchzip
|
, buildDotnetModule
|
||||||
, autoPatchelfHook
|
, callPackage
|
||||||
, dotnet-runtime
|
, fetchFromGitHub
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
, libglvnd
|
, glfw
|
||||||
|
, libogg
|
||||||
|
, libvorbis
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, openal
|
, openal
|
||||||
|
, portaudio
|
||||||
|
, rtmidi
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
|
csprojName = if stdenv.hostPlatform.isLinux then
|
||||||
|
"FamiStudio.Linux"
|
||||||
|
else if stdenv.hostPlatform.isDarwin then
|
||||||
|
"FamiStudio.Mac"
|
||||||
|
else throw "Don't know how to build FamiStudio for ${stdenv.hostPlatform.system}";
|
||||||
|
in
|
||||||
|
buildDotnetModule rec {
|
||||||
pname = "famistudio";
|
pname = "famistudio";
|
||||||
version = "4.1.3";
|
version = "4.1.3";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/BleuBleu/FamiStudio/releases/download/${version}/FamiStudio${lib.strings.concatStrings (lib.splitVersion version)}-LinuxAMD64.zip";
|
owner = "BleuBleu";
|
||||||
stripRoot = false;
|
repo = "FamiStudio";
|
||||||
hash = "sha256-eAdv0oObczbs8QLGYbxCrdFk/gN5DOCJ1dp/tg8JWIc=";
|
rev = "refs/tags/${version}";
|
||||||
|
hash = "sha256-bryxhminkrTVe5qhGeMStZp3NTHBREXrsUlyQkfPkao=";
|
||||||
};
|
};
|
||||||
|
|
||||||
strictDeps = true;
|
postPatch = let
|
||||||
|
libname = library: "${library}${stdenv.hostPlatform.extensions.sharedLibrary}";
|
||||||
|
buildNativeWrapper = args: callPackage ./build-native-wrapper.nix (args // {
|
||||||
|
inherit version src;
|
||||||
|
sourceRoot = "${src.name}/ThirdParty/${args.depname}";
|
||||||
|
});
|
||||||
|
nativeWrapperToReplaceFormat = args: let
|
||||||
|
libPrefix = lib.optionalString stdenv.hostPlatform.isLinux "lib";
|
||||||
|
in {
|
||||||
|
package = buildNativeWrapper args;
|
||||||
|
expectedName = "${libPrefix}${args.depname}";
|
||||||
|
ourName = "${libPrefix}${args.depname}";
|
||||||
|
};
|
||||||
|
librariesToReplace = [
|
||||||
|
# Unmodified native libraries that we can fully substitute
|
||||||
|
{ package = glfw; expectedName = "libglfw"; ourName = "libglfw"; }
|
||||||
|
{ package = rtmidi; expectedName = "librtmidi"; ourName = "librtmidi"; }
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||||
|
{ package = openal; expectedName = "libopenal32"; ourName = "libopenal"; }
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
{ package = portaudio; expectedName = "libportaudio.2"; ourName = "libportaudio.2"; }
|
||||||
|
] ++ [
|
||||||
|
# Native libraries, with extra code for the C# wrapping
|
||||||
|
(nativeWrapperToReplaceFormat { depname = "GifDec"; })
|
||||||
|
(nativeWrapperToReplaceFormat { depname = "NesSndEmu"; })
|
||||||
|
(nativeWrapperToReplaceFormat { depname = "NotSoFatso"; extraPostPatch = ''
|
||||||
|
# C++17 does not allow register storage class specifier
|
||||||
|
substituteInPlace build.sh \
|
||||||
|
--replace-fail "$CXX" "$CXX -std=c++14"
|
||||||
|
''; })
|
||||||
|
(nativeWrapperToReplaceFormat { depname = "ShineMp3"; })
|
||||||
|
(nativeWrapperToReplaceFormat { depname = "Stb"; })
|
||||||
|
(nativeWrapperToReplaceFormat { depname = "Vorbis"; buildInputs = [ libogg libvorbis ]; })
|
||||||
|
];
|
||||||
|
libraryReplaceArgs = lib.strings.concatMapStringsSep " "
|
||||||
|
(library: "--replace-fail '${libname library.expectedName}' '${lib.getLib library.package}/lib/${libname library.ourName}'")
|
||||||
|
librariesToReplace;
|
||||||
|
in ''
|
||||||
|
# Don't use any prebuilt libraries
|
||||||
|
rm FamiStudio/*.{dll,dylib,so*}
|
||||||
|
|
||||||
nativeBuildInputs = [
|
# Replace copying of vendored prebuilt native libraries with copying of our native libraries
|
||||||
autoPatchelfHook
|
substituteInPlace ${projectFile} ${libraryReplaceArgs}
|
||||||
makeWrapper
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
# Un-hardcode target platform if set
|
||||||
dotnet-runtime
|
sed -i -e '/PlatformTarget/d' ${projectFile}
|
||||||
ffmpeg
|
|
||||||
libglvnd
|
|
||||||
openal
|
|
||||||
];
|
|
||||||
|
|
||||||
dontConfigure = true;
|
# Don't require a special name to be preserved, our OpenAL isn't 32-bit
|
||||||
dontBuild = true;
|
substituteInPlace FamiStudio/Source/AudioStreams/OpenALStream.cs \
|
||||||
|
--replace-fail 'libopenal32' 'libopenal'
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
mkdir -p $out/{bin,lib/famistudio}
|
|
||||||
mv * $out/lib/famistudio
|
|
||||||
|
|
||||||
makeWrapper ${lib.getExe dotnet-runtime} $out/bin/famistudio \
|
|
||||||
--add-flags $out/lib/famistudio/FamiStudio.dll \
|
|
||||||
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libglvnd ]} \
|
|
||||||
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
|
|
||||||
|
|
||||||
# Bundled openal lib freezes the application
|
|
||||||
rm $out/lib/famistudio/libopenal32.so
|
|
||||||
ln -s ${openal}/lib/libopenal.so $out/lib/famistudio/libopenal32.so
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
projectFile = "FamiStudio/${csprojName}.csproj";
|
||||||
|
nugetDeps = ./deps.nix;
|
||||||
|
|
||||||
|
executables = [ "FamiStudio" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/famistudio
|
||||||
|
for datdir in Setup/Demo\ {Instruments,Songs}; do
|
||||||
|
cp -R "$datdir" $out/share/famistudio/
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
# FFMpeg looked up from PATH
|
||||||
|
wrapProgram $out/bin/FamiStudio \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = ./update.sh;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://famistudio.org/";
|
homepage = "https://famistudio.org/";
|
||||||
description = "NES Music Editor";
|
description = "NES Music Editor";
|
||||||
@ -62,10 +111,8 @@ stdenv.mkDerivation rec {
|
|||||||
or Famicom. It is targeted at both chiptune artists and NES homebrewers.
|
or Famicom. It is targeted at both chiptune artists and NES homebrewers.
|
||||||
'';
|
'';
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
# Maybe possible to build from source but I'm not too familiar with C# packaging
|
|
||||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
||||||
maintainers = with maintainers; [ OPNA2608 ];
|
maintainers = with maintainers; [ OPNA2608 ];
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = platforms.unix;
|
||||||
mainProgram = "famistudio";
|
mainProgram = "FamiStudio";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
5
pkgs/applications/audio/famistudio/deps.nix
generated
Normal file
5
pkgs/applications/audio/famistudio/deps.nix
generated
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# This file was automatically generated by passthru.fetch-deps.
|
||||||
|
# Please dont edit it manually, your changes might get overwritten!
|
||||||
|
|
||||||
|
{ fetchNuGet }: [
|
||||||
|
]
|
23
pkgs/applications/audio/famistudio/update.sh
Executable file
23
pkgs/applications/audio/famistudio/update.sh
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
#!/usr/bin/env nix-shell
|
||||||
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
||||||
|
set -eo pipefail
|
||||||
|
|
||||||
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||||||
|
|
||||||
|
deps_file="$(realpath "./deps.nix")"
|
||||||
|
|
||||||
|
new_version="$(curl ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \
|
||||||
|
-s "https://api.github.com/repos/BleuBleu/FamiStudio/releases?per_page=1" | jq -r '.[0].tag_name')"
|
||||||
|
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"
|
||||||
|
if [[ "$new_version" == "$old_version" ]]; then
|
||||||
|
echo "Up to date"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd ../../../..
|
||||||
|
|
||||||
|
if [[ "$1" != "--deps-only" ]]; then
|
||||||
|
update-source-version famistudio "$new_version"
|
||||||
|
fi
|
||||||
|
|
||||||
|
$(nix-build . -A famistudio.fetch-deps --no-out-link) "$deps_file"
|
@ -15,13 +15,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "youtube-music";
|
pname = "youtube-music";
|
||||||
version = "3.3.1";
|
version = "3.3.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "th-ch";
|
owner = "th-ch";
|
||||||
repo = "youtube-music";
|
repo = "youtube-music";
|
||||||
rev = "v${finalAttrs.version}";
|
rev = "v${finalAttrs.version}";
|
||||||
hash = "sha256-N6TzDTKvMyasksE0qcEGKeNjGAD08OzxpmpoQ11/ZW4=";
|
hash = "sha256-JOmcfe7xrKRaxJwj2No3e99HBYbX+ROTjHl5Frc2P9Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pnpmDeps = stdenvNoCC.mkDerivation {
|
pnpmDeps = stdenvNoCC.mkDerivation {
|
||||||
@ -47,10 +47,10 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
dontFixup = true;
|
dontFixup = true;
|
||||||
outputHashMode = "recursive";
|
outputHashMode = "recursive";
|
||||||
outputHash = {
|
outputHash = {
|
||||||
x86_64-linux = "sha256-V6CSawxBWFbXmAPbck0xCXqRlANpqFAoqSAB4Duf8qM=";
|
x86_64-linux = "sha256-K2yJdoi+bJpz0Xf2MHlFzQXbP+H3uVE2hYfkzoB7vBE=";
|
||||||
aarch64-linux = "sha256-cqBn35soV14CmobKt0napRELio4HKKA8Iw3QSWTxzP8=";
|
aarch64-linux = "sha256-ZiA6XKPnkoAl9m2vEJth2wyDxj61Efye4cUk+76znnM=";
|
||||||
x86_64-darwin = "sha256-DY9T1N8Hxr57/XisYT+u2+hQvYMIiyQ3UHeTuA6BhSY=";
|
x86_64-darwin = "sha256-wh5Y47c5qD2PctROP9AWqLDs7H5S2/8X0zxkSMkr1xQ=";
|
||||||
aarch64-darwin = "sha256-3Zk0SyhVKaz5QdO69/xzWFZj9ueJS6GLWhfW7odWvHc=";
|
aarch64-darwin = "sha256-e2h4bLVnSEtZcHERsfkNmawgxQHQXxgXrNlFKB+IRTw=";
|
||||||
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
|
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -27,13 +27,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "exodus";
|
pname = "exodus";
|
||||||
version = "24.11.5";
|
version = "24.13.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
name = "exodus-linux-x64-${version}.zip";
|
name = "exodus-linux-x64-${version}.zip";
|
||||||
url = "https://downloads.exodus.com/releases/${pname}-linux-x64-${version}.zip";
|
url = "https://downloads.exodus.com/releases/${pname}-linux-x64-${version}.zip";
|
||||||
curlOptsList = [ "--user-agent" "Mozilla/5.0" ];
|
curlOptsList = [ "--user-agent" "Mozilla/5.0" ];
|
||||||
sha256 = "sha256-sh6Ym+Dm5UIEiESIu1cuY8XSsnJcENCzW7b4S562ax8=";
|
sha256 = "sha256-hhPHWo+nQXgluB6qn57wndX1eslLv3lLpdxm+COGMO8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
nativeBuildInputs = [ unzip ];
|
||||||
|
@ -17046,7 +17046,7 @@ final: prev:
|
|||||||
};
|
};
|
||||||
|
|
||||||
jupytext-nvim = buildVimPlugin {
|
jupytext-nvim = buildVimPlugin {
|
||||||
pname = "jupytest-nvim";
|
pname = "jupytext-nvim";
|
||||||
version = "2024-01-24";
|
version = "2024-01-24";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "GCBallesteros";
|
owner = "GCBallesteros";
|
||||||
@ -17057,5 +17057,17 @@ final: prev:
|
|||||||
meta.homepage = "https://github.com/GCBallesteros/jupytext.nvim/";
|
meta.homepage = "https://github.com/GCBallesteros/jupytext.nvim/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
improved-search-nvim = buildVimPlugin {
|
||||||
|
pname = "improved-search-nvim";
|
||||||
|
version = "2023-12-21";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "backdround";
|
||||||
|
repo = "improved-search.nvim";
|
||||||
|
rev = "9480bfb0e05f990a1658464c1d349dd2acfb9c34";
|
||||||
|
sha256 = "sha256-k35uJZfarjRskS9MgCjSQ3gfl57d+r8vWvw0Uq16Z30=";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/backdround/improved-search.nvim/";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -395,6 +395,7 @@ https://github.com/edwinb/idris2-vim/,,
|
|||||||
https://github.com/3rd/image.nvim/,HEAD,
|
https://github.com/3rd/image.nvim/,HEAD,
|
||||||
https://github.com/samodostal/image.nvim/,HEAD,samodostal-image-nvim
|
https://github.com/samodostal/image.nvim/,HEAD,samodostal-image-nvim
|
||||||
https://github.com/lewis6991/impatient.nvim/,,
|
https://github.com/lewis6991/impatient.nvim/,,
|
||||||
|
https://github.com/backdround/improved-search.nvim/,HEAD,
|
||||||
https://github.com/smjonas/inc-rename.nvim/,HEAD,
|
https://github.com/smjonas/inc-rename.nvim/,HEAD,
|
||||||
https://github.com/nishigori/increment-activator/,,
|
https://github.com/nishigori/increment-activator/,,
|
||||||
https://github.com/haya14busa/incsearch-easymotion.vim/,,
|
https://github.com/haya14busa/incsearch-easymotion.vim/,,
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "f3d";
|
pname = "f3d";
|
||||||
version = "2.3.0";
|
version = "2.3.1";
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
owner = "f3d-app";
|
owner = "f3d-app";
|
||||||
repo = "f3d";
|
repo = "f3d";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-pr2xuCy5yoUuj2cjkTh3Xwpg3g7zBspjErEi5luRD6Y=";
|
hash = "sha256-A6PD++wZZfVp/3hV7yefQPhxTpvpZHN0h0pRCxA6vkU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{ mkDerivation
|
{ mkDerivation
|
||||||
, fetchurl
|
|
||||||
, lib
|
, lib
|
||||||
, extra-cmake-modules
|
, extra-cmake-modules
|
||||||
, kdoctools
|
, kdoctools
|
||||||
@ -80,6 +79,10 @@ mkDerivation {
|
|||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
inherit kpmcore;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "KDE Partition Manager";
|
description = "KDE Partition Manager";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "avalanchego";
|
pname = "avalanchego";
|
||||||
version = "1.11.2";
|
version = "1.11.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ava-labs";
|
owner = "ava-labs";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-E75lqQkaCub/WpxvVHB5YP1E1ygjUURJ1VWrjvcV96o=";
|
hash = "sha256-VeszkBExveXmajnVLHDp9Fc9xngnUKBbVY55L260rds=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-Xrr4QE0FN6sII4xOjPbhwBlNgEwOlogKRNStjrjH7H0=";
|
vendorHash = "sha256-8K8loSdeISkA06LBkZgro+mEbQEZY1sdzplq7IKZ4kI=";
|
||||||
# go mod vendor has a bug, see: https://github.com/golang/go/issues/57529
|
# go mod vendor has a bug, see: https://github.com/golang/go/issues/57529
|
||||||
proxyVendor = true;
|
proxyVendor = true;
|
||||||
|
|
||||||
|
@ -2,17 +2,17 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "argocd";
|
pname = "argocd";
|
||||||
version = "2.10.4";
|
version = "2.10.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "argoproj";
|
owner = "argoproj";
|
||||||
repo = "argo-cd";
|
repo = "argo-cd";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-D7vkVvYLImC9dtqPU3Gxe5sQO92qxnx4533ykBm7u7c=";
|
hash = "sha256-koTNC6ClKgmrgrELxtGz4rKe/VV/9kPK99Cmm50aB94=";
|
||||||
};
|
};
|
||||||
|
|
||||||
proxyVendor = true; # darwin/linux hash mismatch
|
proxyVendor = true; # darwin/linux hash mismatch
|
||||||
vendorHash = "sha256-O13zMtrXgW3SiJmAn64/QW/CJN0+d0h0MMyEWKsy9WE=";
|
vendorHash = "sha256-BqXTjmeKfCCwdwJ3gSOyvKfuqkjN+0S/1xe5vM406Ig=";
|
||||||
|
|
||||||
# Set target as ./cmd per cli-local
|
# Set target as ./cmd per cli-local
|
||||||
# https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
|
# https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
|
||||||
|
@ -8,13 +8,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "karmor";
|
pname = "karmor";
|
||||||
version = "1.2.0";
|
version = "1.2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kubearmor";
|
owner = "kubearmor";
|
||||||
repo = "kubearmor-client";
|
repo = "kubearmor-client";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-hul348zF81oXTcvcfRpNYiiqfocS3HPwcPdXp7Ij91Y=";
|
hash = "sha256-NNCV/+Jh/tjc7SC4E9/gtiVthVmAxZBOyW3MFISbkH4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-CKOZxmUVZWFb7cc+amPwyMv5ScujWeipEqm95m63SYk=";
|
vendorHash = "sha256-CKOZxmUVZWFb7cc+amPwyMv5ScujWeipEqm95m63SYk=";
|
||||||
|
@ -15,17 +15,17 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
inherit pname;
|
inherit pname;
|
||||||
version = "2.6.2";
|
version = "2.6.3";
|
||||||
tags = lib.optionals enableGateway [ "gateway" ];
|
tags = lib.optionals enableGateway [ "gateway" ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kumahq";
|
owner = "kumahq";
|
||||||
repo = "kuma";
|
repo = "kuma";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-BYnrDB86O2I1DliHpDU65dDbGVmzBhfus4cgb2HpPQ4=";
|
hash = "sha256-m/mCnX/VFUPd3+DY+7znes55myIiJ8+T51NPcgWOiZc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-p3r0LXqv7X7OyDIlZKfe964fD+E+5lmrToP4rqborlo=";
|
vendorHash = "sha256-otrm8avM35/8WqjSO8V8hMAzsh51unyrMVDv4321xoY=";
|
||||||
|
|
||||||
# no test files
|
# no test files
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -5,20 +5,20 @@ let
|
|||||||
in
|
in
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "diswall";
|
pname = "diswall";
|
||||||
version = "0.5.1";
|
version = "0.5.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dis-works";
|
owner = "dis-works";
|
||||||
repo = "diswall-rs";
|
repo = "diswall-rs";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-6XMw8fnuM1KyInYCw8DTonsj5gV9d+EuYfO5ggZ3YUU=";
|
sha256 = "sha256-HoIkozwRV0xz14mOTM4BXDzPShRAp8a3quhvtWwnQ2I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
Security
|
Security
|
||||||
];
|
];
|
||||||
|
|
||||||
cargoHash = "sha256-So7XBC66y2SKbcjErg4Tnd/NcEpX5zYOEr60RvU9OOU=";
|
cargoHash = "sha256-KA2hwaEhY2G+H4+xVgin6xhmRfnGcJBBWj9xWtD0h9I=";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "iamb";
|
pname = "iamb";
|
||||||
version = "0.0.8";
|
version = "0.0.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ulyssa";
|
owner = "ulyssa";
|
||||||
repo = "iamb";
|
repo = "iamb";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-Mt4/UWySC6keoNvb1VDCVPoK24F0rmd0R47ZRPADkaw=";
|
hash = "sha256-UYc7iphpzqZPwhOn/ia7XvnnlIUvM7nSFBz67ZkXmNs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-UbmeEcmUr3zx05Hk36tjsl0Y9ay7DNM1u/3lPqlXN2o=";
|
cargoHash = "sha256-982FdK6ej3Bbg4R9e43VSwlni837ZK4rkMkoeYMyW8E=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
callPackage ./generic.nix { } rec {
|
callPackage ./generic.nix { } rec {
|
||||||
pname = "signal-desktop";
|
pname = "signal-desktop";
|
||||||
dir = "Signal";
|
dir = "Signal";
|
||||||
version = "7.3.1";
|
version = "7.4.0";
|
||||||
url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb";
|
url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb";
|
||||||
hash = "sha256-J99mSSzl+TxWb6whzJ4oZs8a7NnKFVL3iNvWmvlQIaw=";
|
hash = "sha256-9a8Y8ncatynKspC/q0YxUWJj+nENr1ArwCZA9Ng8Mxk=";
|
||||||
}
|
}
|
||||||
|
@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
pname = "mendeley";
|
pname = "mendeley";
|
||||||
version = "2.110.2";
|
version = "2.111.0";
|
||||||
|
|
||||||
executableName = "${pname}-reference-manager";
|
executableName = "${pname}-reference-manager";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://static.mendeley.com/bin/desktop/mendeley-reference-manager-${version}-x86_64.AppImage";
|
url = "https://static.mendeley.com/bin/desktop/mendeley-reference-manager-${version}-x86_64.AppImage";
|
||||||
hash = "sha256-AJNNCPEwLAO1+Zub6Yyad5Zcsl35zf4dEboyGE9wSX8=";
|
hash = "sha256-tN76RKHETTMkJ239I6+a36RPTuWqYlCSs+tEP+BcB+M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
appimageContents = appimageTools.extractType2 {
|
appimageContents = appimageTools.extractType2 {
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "pspp";
|
pname = "pspp";
|
||||||
version = "2.0.0";
|
version = "2.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
|
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
|
||||||
sha256 = "sha256-qPbLiGr1sIOENXm81vsZHAVKzOKMxotY58XwmZai2N8=";
|
sha256 = "sha256-jtuw8J6M+AEMrZ4FWeAjDX/FquRyHHVsNQVU3zMCTAA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config texinfo python3 makeWrapper ];
|
nativeBuildInputs = [ pkg-config texinfo python3 makeWrapper ];
|
||||||
|
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rofi-calc";
|
pname = "rofi-calc";
|
||||||
version = "2.2.0";
|
version = "2.2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "svenstaro";
|
owner = "svenstaro";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-SGDORHX+lk6PS5/sPAmKZLfZD99/A7XvDPDnuAygDAM=";
|
sha256 = "sha256-uXaI8dwTRtg8LnFxopgXr9x/vEl8ixzIGOsSQQkAkoQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "git-town";
|
pname = "git-town";
|
||||||
version = "11.1.0";
|
version = "13.0.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "git-town";
|
owner = "git-town";
|
||||||
repo = "git-town";
|
repo = "git-town";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-QQ+sIZzkzecs+pZBzsmCL048JZpMPvdYi0PRtMN4AhY=";
|
hash = "sha256-Ds3N5KUpB0HLRrKH/kpcBqtOtBD1fizYPsfKedBorTo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = null;
|
vendorHash = null;
|
||||||
@ -56,7 +56,7 @@ buildGoModule rec {
|
|||||||
passthru.tests.version = testers.testVersion {
|
passthru.tests.version = testers.testVersion {
|
||||||
package = git-town;
|
package = git-town;
|
||||||
command = "git-town --version";
|
command = "git-town --version";
|
||||||
version = "v${version}";
|
inherit version;
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -7,16 +7,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "kraftkit";
|
pname = "kraftkit";
|
||||||
version = "0.7.5";
|
version = "0.7.14";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "unikraft";
|
owner = "unikraft";
|
||||||
repo = "kraftkit";
|
repo = "kraftkit";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-kuI1RSipPj7e8tsnThAEkL3bpmgAEKSQthubfjtklp0=";
|
hash = "sha256-5P+tfaT5eCEDCsQmlUUx2dkh/elC6wipbJc1sAhyTYQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-BPpUBGWzW4jkUgy/2oqvqXBNLmglUVTFA9XuGhUE1zo=";
|
vendorHash = "sha256-tfg5bG/aKxmPyN12AsuK0D9ms6SwdbTh7QFRXmS4QzI=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
|
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "wayfire-shadows";
|
pname = "wayfire-shadows";
|
||||||
version = "unstable-2023-09-09";
|
version = "unstable-2024-03-28";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "timgott";
|
owner = "timgott";
|
||||||
repo = "wayfire-shadows";
|
repo = "wayfire-shadows";
|
||||||
rev = "de3239501fcafd1aa8bd01d703aa9469900004c5";
|
rev = "81699f6e4be65dcf3f7ad5155dfb4247b37b7997";
|
||||||
hash = "sha256-oVlSzpddPDk6pbyLFMhAkuRffkYpinP7jRspVmfLfyA=";
|
hash = "sha256-H9pqpHoeDfNBrtVLax57CUXVhU2XT+syAUZTYSJizxw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -12,15 +12,15 @@
|
|||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "adwsteamgtk";
|
pname = "adwsteamgtk";
|
||||||
version = "0.6.9";
|
version = "0.6.10";
|
||||||
# built with meson, not a python format
|
# built with meson, not a python format
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Foldex";
|
owner = "Foldex";
|
||||||
repo = "AdwSteamGtk";
|
repo = "AdwSteamGtk";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-aHJxgSb7oZTRrfFVYdLimwhSGzdRjGf7dGTRA+ANQiM=";
|
hash = "sha256-sh4FLXG78i20Bt8pCCbhO6Sx815stjAZRLCD+X5Zk40=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -0,0 +1,14 @@
|
|||||||
|
# shellcheck shell=bash
|
||||||
|
# Run addDriverRunpath on all dynamically linked, ELF files
|
||||||
|
echo "Sourcing auto-add-driver-runpath-hook"
|
||||||
|
|
||||||
|
if [ -n "${dontUseAutoAddOpenGLRunpath-}" ]; then
|
||||||
|
echo "dontUseAutoAddOpenGLRunpath has been deprecated, please use dontUseAutoAddDriverRunpath instead"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Respect old toggle value to allow for people to gracefully transition
|
||||||
|
# See: https://github.com/NixOS/nixpkgs/issues/141803 for transition roadmap
|
||||||
|
if [ -z "${dontUseAutoAddDriverRunpath-}" -a -z "${dontUseAutoAddOpenGLRunpath-}" ]; then
|
||||||
|
echo "Using autoAddDriverRunpath"
|
||||||
|
postFixupHooks+=("autoFixElfFiles addDriverRunpath")
|
||||||
|
fi
|
6
pkgs/by-name/au/autoAddDriverRunpath/package.nix
Normal file
6
pkgs/by-name/au/autoAddDriverRunpath/package.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ addDriverRunpath, autoFixElfFiles, makeSetupHook }:
|
||||||
|
|
||||||
|
makeSetupHook {
|
||||||
|
name = "auto-add-driver-runpath-hook";
|
||||||
|
propagatedBuildInputs = [ addDriverRunpath autoFixElfFiles ];
|
||||||
|
} ./auto-add-driver-runpath-hook.sh
|
64
pkgs/by-name/au/autoFixElfFiles/auto-fix-elf-files.sh
Normal file
64
pkgs/by-name/au/autoFixElfFiles/auto-fix-elf-files.sh
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
# shellcheck shell=bash
|
||||||
|
# List all dynamically linked ELF files in the outputs and apply a generic fix
|
||||||
|
# action provided as a parameter (currently used to add the CUDA or the
|
||||||
|
# cuda_compat driver to the runpath of binaries)
|
||||||
|
echo "Sourcing fix-elf-files.sh"
|
||||||
|
|
||||||
|
# Returns the exit code of patchelf --print-rpath.
|
||||||
|
# A return code of 0 (success) means the ELF file has a dynamic section, while
|
||||||
|
# a non-zero return code means the ELF file is statically linked (or is not an
|
||||||
|
# ELF file).
|
||||||
|
elfHasDynamicSection() {
|
||||||
|
local libPath
|
||||||
|
|
||||||
|
if [[ $# -eq 0 ]]; then
|
||||||
|
echo "elfHasDynamicSection: no library path provided" >&2
|
||||||
|
exit 1
|
||||||
|
elif [[ $# -gt 1 ]]; then
|
||||||
|
echo "elfHasDynamicSection: too many arguments" >&2
|
||||||
|
exit 1
|
||||||
|
elif [[ "$1" == "" ]]; then
|
||||||
|
echo "elfHasDynamicSection: empty library path" >&2
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
libPath="$1"
|
||||||
|
shift 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
patchelf --print-rpath "$libPath" >& /dev/null
|
||||||
|
return $?
|
||||||
|
}
|
||||||
|
|
||||||
|
# Run a fix action on all dynamically linked ELF files in the outputs.
|
||||||
|
autoFixElfFiles() {
|
||||||
|
local fixAction
|
||||||
|
local outputPaths
|
||||||
|
|
||||||
|
if [[ $# -eq 0 ]]; then
|
||||||
|
echo "autoFixElfFiles: no fix action provided" >&2
|
||||||
|
exit 1
|
||||||
|
elif [[ $# -gt 1 ]]; then
|
||||||
|
echo "autoFixElfFiles: too many arguments" >&2
|
||||||
|
exit 1
|
||||||
|
elif [[ "$1" == "" ]]; then
|
||||||
|
echo "autoFixElfFiles: empty fix action" >&2
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
fixAction="$1"
|
||||||
|
fi
|
||||||
|
|
||||||
|
mapfile -t outputPaths < <(for o in $(getAllOutputNames); do echo "${!o}"; done)
|
||||||
|
|
||||||
|
find "${outputPaths[@]}" -type f -print0 | while IFS= read -rd "" f; do
|
||||||
|
if ! isELF "$f"; then
|
||||||
|
continue
|
||||||
|
elif elfHasDynamicSection "$f"; then
|
||||||
|
# patchelf returns an error on statically linked ELF files, and in
|
||||||
|
# practice fixing actions all involve patchelf
|
||||||
|
echo "autoFixElfFiles: using $fixAction to fix $f" >&2
|
||||||
|
$fixAction "$f"
|
||||||
|
elif (( "${NIX_DEBUG:-0}" >= 1 )); then
|
||||||
|
echo "autoFixElfFiles: skipping a statically-linked ELF file $f"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
5
pkgs/by-name/au/autoFixElfFiles/package.nix
Normal file
5
pkgs/by-name/au/autoFixElfFiles/package.nix
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{ makeSetupHook }:
|
||||||
|
|
||||||
|
makeSetupHook {
|
||||||
|
name = "auto-fix-elf-files";
|
||||||
|
} ./auto-fix-elf-files.sh
|
313
pkgs/by-name/do/dotnet-outdated/deps.nix
generated
Normal file
313
pkgs/by-name/do/dotnet-outdated/deps.nix
generated
Normal file
@ -0,0 +1,313 @@
|
|||||||
|
# This file was automatically generated by passthru.fetch-deps.
|
||||||
|
# Please dont edit it manually, your changes might get overwritten!
|
||||||
|
|
||||||
|
{ fetchNuGet }: [
|
||||||
|
(fetchNuGet { pname = "Castle.Core"; version = "5.0.0"; sha256 = "1f6qd0zy4s3dvi4f3sp9f3fx25rj16sib9hcha456z8i5nrlnix3"; })
|
||||||
|
(fetchNuGet { pname = "CsvHelper"; version = "30.0.1"; sha256 = "0v01s672zcrd3fjwzh14dihbal3apzyg3dc80k05a90ljk8yh9wl"; })
|
||||||
|
(fetchNuGet { pname = "dotnet-xunit"; version = "2.3.1"; sha256 = "0w1zslkig6qk6rhw6ckfy331rnbfbnxr0gdy2pxgnc8rz2fj2s54"; })
|
||||||
|
(fetchNuGet { pname = "Libuv"; version = "1.9.0"; sha256 = "0ag6l9h1h4knf3hy1fjfrqm6mavr9zw35i0qrnnm8la4mdbcnd0f"; })
|
||||||
|
(fetchNuGet { pname = "McMaster.Extensions.CommandLineUtils"; version = "4.0.2"; sha256 = "1x2a60vjq0n6mb7bfjlggbvp8vpq0m7ls5x4bwff2g2qxhw09rbv"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "6.0.27"; sha256 = "11sfm0vb8grybwdfzl9y3y1v9jg94rn3fpsf0995xm1qgk57piiv"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "7.0.16"; sha256 = "1nrk00w3jkb1r3m8zn7c05snan02b6s7n5s93aq2dl9kz0bm530c"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "6.0.27"; sha256 = "078vz7l3sw25jxkhxf646hwc1csasna4n04rjq6vcv30c9kx3lp9"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "7.0.16"; sha256 = "0g4zxka97q3bdc72yql296hx2laim5b4rfb8vxmknzdpzj0ydiks"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "8.0.2"; sha256 = "1bxsrlsyvia4v3fswxl9pnf9107zwf1n1hlwffyxs0kd5iq7jabr"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.27"; sha256 = "0cdvdbvvbky0y60732j2n2jjycgpm2ngx38hl6zq198xm1d4g43x"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "7.0.16"; sha256 = "0zy1zarikg4d1g06ax3zdjvfysw2393b9fgg7xnracqi17hr38ah"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "6.0.27"; sha256 = "11l2a80xxinf08m9i6jdy0nkjpdjs9llqb8gs7x0762cnyhds7la"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "7.0.16"; sha256 = "1wgmbbn81rbqlx44hg9zqrrcmiinss1qhgfsq37vzy2i8ycyn59w"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "8.0.2"; sha256 = "0xfwnqbbzg1xb6zxlms5v1dj3jh46lh6vzfjbqxj55fj87qr73yi"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "6.0.27"; sha256 = "0r7qqwkqm9lraqwc25aadbg856v006h17yj8cxmp800iz7288k07"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "7.0.16"; sha256 = "1ggcy57k31bxqk6k1hsbmzxkyly9bzch7dw7fgl2yx4a439nkh54"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "8.0.2"; sha256 = "0ihhhsypb0f8lffl5lbm4nw0l9cwcv6dgylxbgvs10yfpvpix8av"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "7.0.0"; sha256 = "1waiggh3g1cclc81gmjrqbh128kwfjky3z79ma4bd2ms9pa3gvfm"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "1.1.0"; sha256 = "08r667hj2259wbim1p3al5qxkshydykmb7nd9ygbjlg4mmydkapc"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "1.3.0"; sha256 = "097qi36jhyllpqj313nxzwc64a4f65p014gaj6fz4z5jcphkkk15"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "1.3.0"; sha256 = "0vpslncd5lk88ijb42qbp88dfrd0fg4kri44w6jpmxb3fcqazais"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.CodeAnalysis.VisualBasic"; version = "1.3.0"; sha256 = "186chky80rryhzh5dh8j318ghyvn1a7r2876rlyadxdrs7aqv0ll"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.8.0"; sha256 = "173wjadp3gan4x2jfjchngnc4ca4mb95h1sbb28jydfkfw0z1zvj"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.CSharp"; version = "4.0.1"; sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "7.0.0"; sha256 = "121zs4jp8iimgbpzm3wsglhjwkc06irg1pxy8c1zcdlsg34cfq1p"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "7.0.0"; sha256 = "181d7mp9307fs17lyy42f8cxnjwysddmpsalky4m0pqxcimnr6g7"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.8.0"; sha256 = "1syvl3g0hbrcgfi9rq6pld8s8hqqww4dflf1lxn59ccddyyx0gmv"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App"; version = "1.0.0"; sha256 = "0i09cs7a7hxn9n1nx49382csvc7560j4hbxr2c8bwa69nhf2rrjp"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "6.0.27"; sha256 = "0p0apwm7xpwwvjl453livb8ngvc0izjp5yfpgv116vhig2mxszsa"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "7.0.16"; sha256 = "0wxa2mm34l32324rywns3bphxrkxm265wxck93z030klwvxdalri"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "8.0.2"; sha256 = "1pi4s9sn64cyvarba1vgb17k92ank7q95xmn7dz9zb1z9n6v19hm"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "6.0.27"; sha256 = "1vglh2l7brp6qbdngiiwsjwsp3cyzbzjcjw7dwqhfk0whc7n96kg"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "7.0.16"; sha256 = "1xiq43br5lk1xa4d4wzhdpn9lz3mixmyxggzbsf4i4q5692rv35f"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "6.0.27"; sha256 = "14zd7mgl866bhqqrcb6q3xbwrllks1nmfzhnbm8rf7h5cqqrqwbn"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "7.0.16"; sha256 = "0ln013191h2rkhm8xss4aqbb52ywp44rjfnn7pip99wdx66bkazs"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "8.0.2"; sha256 = "1v8nngksh0cp51g221bizz52jjpc4rzm1avcy5psl81ywmkwmj93"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "6.0.27"; sha256 = "1kf3sm7hkqz5a4y5rb49yna10041f1h3lcqx885xlbhyb4q67gi9"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "7.0.16"; sha256 = "1b8w278n8hcxysjs56ghx4pdbfall66nnmk1kx5a0my7lp7yp6xf"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "8.0.2"; sha256 = "1xlnlp4ckqn0myl5pzsqhmpall1pnbmqhb62rr7m61dy83xhvm6l"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "6.0.27"; sha256 = "15fwbjq2r406fq175j2lsh4f91iiipmvaq96nsba3q2fh0c433zm"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "7.0.16"; sha256 = "19lnkab2p8nkfc4jag0whkv51v3qabwdyzjk6xgj61i6s8lnnz1f"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "6.0.27"; sha256 = "1dxvssf7rx05bipj03g8jm36j2mmdm13sg8rdwn6aa6whbwpip0r"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "7.0.16"; sha256 = "1qb3pk1kgvwjc2n4kqfx4bqjmaihjf8cd9cfkqkkwmnnw9jd7f83"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "8.0.2"; sha256 = "1g2n69s8sa9ik9jhkc6xcdjcvghwr5m9glbxr1f22dbj6nw433c4"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.27"; sha256 = "1j913pm78h35kvcm70276cnfvjn1r7r6jsc3jm1y0vb395qy6nfd"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "7.0.16"; sha256 = "1w41xwdikkyplxr1kqfn1fwjvbglgsaripgdglhdx9qdxgr3nfi3"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "6.0.27"; sha256 = "1mbjbj9c7sxw0hfq25ypv56hi9kik3vrrvr8ika3wcwv1ilpvczj"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "7.0.16"; sha256 = "0xgd5nj5nx3w3m9cbh3b6r0c2w5svxjkslwqq35w445vjhq435fz"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "8.0.2"; sha256 = "116rkq5ri5dbhp5g7zyc71ml2v92vb5bw5f3nx96llb1pqk74grh"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "6.0.27"; sha256 = "0dr1y76wgkqnkjxk5m8ps2g086sn4kp3a04v0ynarw5j0cipg994"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "7.0.16"; sha256 = "0mghc3ihk2j60yyrb57k200ddmhj5impl81lldpxxx9821pb0qha"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "8.0.2"; sha256 = "0x3fsfkv2gcilhsj31pjgg2vfibq2xvqhprw3hpm4gig4c2qi4fg"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "1.0.1"; sha256 = "1qr4gnzlpwzv8jr7ijmdg13x2s9m35g4ma0bh18kci4ml7h9jb6a"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "1.0.1"; sha256 = "0vbqww1bmlkz7xq05zxykv27xdrkl6nrjhs1iiszaa9ivf7nklz1"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "1.0.1"; sha256 = "109zs3bqhzh6mhbf2rfpwxmpb8fq57jr7wriyylynirsqh1lnql4"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Jit"; version = "1.0.2"; sha256 = "0jaan2wmg80lr0mhgfy70kb5cqjwv1a2ikmxgd0glpcxp7wr7pag"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Runtime.CoreCLR"; version = "1.0.2"; sha256 = "1hxgsjyzh7hdgd34xwpn5s2myy1b1y9ms7xhvs6mkb75wap49bpc"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.NETCore.Windows.ApiSets"; version = "1.0.1"; sha256 = "16k8chghkr25jf49banhzl839vs8n3vbfpg4wn4idi0hzjipix78"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.8.0"; sha256 = "0b0i7lmkrcfvim8i3l93gwqvkhhhfzd53fqfnygdqvkg6np0cg7m"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.8.0"; sha256 = "0f5jah93kjkvxwmhwb78lw11m9pkkq9fvf135hpymmmpxqbdh97q"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.VisualBasic"; version = "10.0.1"; sha256 = "0q6vv9qfkbwn7gz8qf1gfcn33r87m260hsxdsk838mcbqmjz6wgc"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.0.1"; sha256 = "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; })
|
||||||
|
(fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.0.0"; sha256 = "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k"; })
|
||||||
|
(fetchNuGet { pname = "NETStandard.Library"; version = "1.6.0"; sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; })
|
||||||
|
(fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; })
|
||||||
|
(fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; sha256 = "0xrwysmrn4midrjal8g2hr1bbg38iyisl0svamb11arqws4w2bw7"; })
|
||||||
|
(fetchNuGet { pname = "NSubstitute"; version = "5.0.0"; sha256 = "1iacc39nz8pzxay5fs9mzrflmr9mvwjd3lrn61yc7kmamqs87rqk"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Common"; version = "6.8.0"; sha256 = "0l3ij8iwy7wj6s7f93lzi9168r4wz8zyin6a08iwgk7hvq44cia1"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Configuration"; version = "6.8.0"; sha256 = "0x03p408smkmv1gv7pmvsia4lkn0xaj4wfrkl58pjf8bbv51y0yw"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Credentials"; version = "6.8.0"; sha256 = "0dypmdkibgm5d9imhjnpgpdi6kmg6cnlvc7lc9w4v7ijflril15l"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.DependencyResolver.Core"; version = "6.8.0"; sha256 = "0da44ni1g6s3fkzmhymbcv98fcpd31bfmivq4cg90d0wiig85wvw"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Frameworks"; version = "6.5.0"; sha256 = "0s37d1p4md0k6d4cy6sq36f2dgkd9qfbzapxhkvi8awwh0vrynhj"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Frameworks"; version = "6.8.0"; sha256 = "0i2xvhgkjkjr496i3pg8hamwv6505fia45qhn7jg5m01wb3cvsjl"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.LibraryModel"; version = "6.8.0"; sha256 = "13qn64jckc9fd7yx5nwsxpj1i9gndlks35w0bdsfy8gc791wqdy4"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Packaging"; version = "6.8.0"; sha256 = "031z4s905bxi94h3f0qy4j1b6jxdxgqgpkzqvvpfxch07szxcbim"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.ProjectModel"; version = "6.8.0"; sha256 = "1619jxp12cggspnwpk2x99s6h4z7gbc6kyngkij5cjd5wwc05haj"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Protocol"; version = "6.8.0"; sha256 = "1d7hpdhrwv2fj7kzhqs6bp03vq9krv87jgxdhz0n9mih3zank4y0"; })
|
||||||
|
(fetchNuGet { pname = "NuGet.Versioning"; version = "6.8.0"; sha256 = "1sd25h46fd12ng780r02q4ijcx1imkb53kj1y2y7cwg5myh537ks"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; })
|
||||||
|
(fetchNuGet { pname = "runtime.any.System.Threading.Timer"; version = "4.3.0"; sha256 = "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086"; })
|
||||||
|
(fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d"; })
|
||||||
|
(fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59"; })
|
||||||
|
(fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System"; version = "4.0.0"; sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.1.0"; sha256 = "0d720z4lzyfcabmmnvh0bnj76ll7djhji2hmfh3h44sdkjnlkknk"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; sha256 = "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.0.1"; sha256 = "1hgv2bmbaskx77v8glh7waxws973jn4ah35zysnkxmf0196sfxg6"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.Net.Security"; version = "4.0.1"; sha256 = "1nk4pf8vbrgf73p0skhwmzhgz1hax3j123ilhwdncr47l3x1dbhk"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.Security.Cryptography"; version = "4.0.0"; sha256 = "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q"; })
|
||||||
|
(fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; })
|
||||||
|
(fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3"; })
|
||||||
|
(fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf"; })
|
||||||
|
(fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi"; })
|
||||||
|
(fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3"; })
|
||||||
|
(fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn"; })
|
||||||
|
(fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3"; })
|
||||||
|
(fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy"; })
|
||||||
|
(fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.Console"; version = "4.3.0"; sha256 = "1pfpkvc6x2if8zbdzg9rnc5fx51yllprl8zkm5npni2k50lisy80"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; sha256 = "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; sha256 = "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; sha256 = "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; })
|
||||||
|
(fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; })
|
||||||
|
(fetchNuGet { pname = "System.AppContext"; version = "4.1.0"; sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; })
|
||||||
|
(fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; sha256 = "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya"; })
|
||||||
|
(fetchNuGet { pname = "System.Buffers"; version = "4.0.0"; sha256 = "13s659bcmg9nwb6z78971z1lr6bmh2wghxi1ayqyzl4jijd351gr"; })
|
||||||
|
(fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; })
|
||||||
|
(fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; sha256 = "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3"; })
|
||||||
|
(fetchNuGet { pname = "System.Collections"; version = "4.0.11"; sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; })
|
||||||
|
(fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; })
|
||||||
|
(fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.0.12"; sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; })
|
||||||
|
(fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; })
|
||||||
|
(fetchNuGet { pname = "System.Collections.Immutable"; version = "1.2.0"; sha256 = "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m"; })
|
||||||
|
(fetchNuGet { pname = "System.ComponentModel"; version = "4.0.1"; sha256 = "0v4qpmqlzyfad2kswxxj2frnaqqhz9201c3yn8fmmarx5vlzg52z"; })
|
||||||
|
(fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.1.0"; sha256 = "0l6m3z6h2qjjam1rp1fzk7zz5czjjazmw78rbh72x25y6kmyn6wf"; })
|
||||||
|
(fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "5.0.0"; sha256 = "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j"; })
|
||||||
|
(fetchNuGet { pname = "System.Console"; version = "4.0.0"; sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; })
|
||||||
|
(fetchNuGet { pname = "System.Console"; version = "4.3.0"; sha256 = "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.0.0"; sha256 = "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.EventLog"; version = "6.0.0"; sha256 = "08y1x2d5w2hnhkh9r1998pjc7r4qp0rmzax062abha85s11chifd"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.FileVersionInfo"; version = "4.0.0"; sha256 = "1s5vxhy7i09bmw51kxqaiz9zaj9am8wsjyz13j85sp23z267hbv3"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Process"; version = "4.1.0"; sha256 = "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.StackTrace"; version = "4.0.1"; sha256 = "0q29axqklpl36vvyni5h1cyb02lfvvkqprb9wfvcdca3181q5al2"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.1.0"; sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; })
|
||||||
|
(fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; })
|
||||||
|
(fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; })
|
||||||
|
(fetchNuGet { pname = "System.Formats.Asn1"; version = "6.0.0"; sha256 = "1vvr7hs4qzjqb37r0w1mxq7xql2b17la63jwvmgv65s1hj00g8r9"; })
|
||||||
|
(fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; })
|
||||||
|
(fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; })
|
||||||
|
(fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.0.1"; sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; })
|
||||||
|
(fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; })
|
||||||
|
(fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; })
|
||||||
|
(fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; })
|
||||||
|
(fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; })
|
||||||
|
(fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.Abstractions"; version = "19.2.64"; sha256 = "1hgii2s97wima8cx2nabvmsg7ij6rl23x436zb9naj97kssfyxw4"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.Abstractions.TestingHelpers"; version = "19.2.64"; sha256 = "003n5a0jxgmwlw3vk0ljkmj4vgryqyi949mblh5asxf3457zn328"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.Compression"; version = "4.1.0"; sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.0.1"; sha256 = "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; sha256 = "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.FileSystem.AccessControl"; version = "5.0.0"; sha256 = "0ixl68plva0fsj3byv76bai7vkin86s6wyzr8vcav3szl862blvk"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.0.1"; sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.FileSystem.Watcher"; version = "4.0.0"; sha256 = "0rgfjiqz8dqy8hmbfsls4sa46ss6p9vh86cvn1vqx7zg45pf3hir"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.MemoryMappedFiles"; version = "4.0.0"; sha256 = "1ahp27llf76ngc0fngl8zy4y1sgflzrkmxddilnd0l0cbbq1lm6m"; })
|
||||||
|
(fetchNuGet { pname = "System.IO.UnmanagedMemoryStream"; version = "4.0.1"; sha256 = "012g8nwbfv94rhblsb3pxn1bazfpgjiy3kmy00679gg3651b87jb"; })
|
||||||
|
(fetchNuGet { pname = "System.Linq"; version = "4.1.0"; sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; })
|
||||||
|
(fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; })
|
||||||
|
(fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; })
|
||||||
|
(fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; })
|
||||||
|
(fetchNuGet { pname = "System.Linq.Parallel"; version = "4.0.1"; sha256 = "0i33x9f4h3yq26yvv6xnq4b0v51rl5z8v1bm7vk972h5lvf4apad"; })
|
||||||
|
(fetchNuGet { pname = "System.Linq.Queryable"; version = "4.0.1"; sha256 = "11jn9k34g245yyf260gr3ldzvaqa9477w2c5nhb1p8vjx4xm3qaw"; })
|
||||||
|
(fetchNuGet { pname = "System.Memory"; version = "4.5.4"; sha256 = "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y"; })
|
||||||
|
(fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Http"; version = "4.1.0"; sha256 = "1i5rqij1icg05j8rrkw4gd4pgia1978mqhjzhsjg69lvwcdfg8yb"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.NameResolution"; version = "4.0.0"; sha256 = "0dj3pvpv069nyia28gkl4a0fb7q33hbxz2dg25qvpah3l7pbl0qh"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.NameResolution"; version = "4.3.0"; sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Primitives"; version = "4.0.11"; sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Requests"; version = "4.0.11"; sha256 = "13mka55sa6dg6nw4zdrih44gnp8hnj5azynz47ljsh2791lz3d9h"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Security"; version = "4.0.0"; sha256 = "0ybyfssnm0cri37byhxnkfrzprz77nizbfj553x7s1vry2pnm5gb"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Sockets"; version = "4.1.0"; sha256 = "1385fvh8h29da5hh58jm1v78fzi9fi5vj93vhlm2kvqpfahvpqls"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.Sockets"; version = "4.3.0"; sha256 = "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla"; })
|
||||||
|
(fetchNuGet { pname = "System.Net.WebHeaderCollection"; version = "4.0.1"; sha256 = "10bxpxj80c4z00z3ksrfswspq9qqsw8jwxcbzvymzycb97m9b55q"; })
|
||||||
|
(fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.1.1"; sha256 = "1xkzrpl700pp0l6dc9fx7cj318i596w0i0qixsbrz5v65fnhbzia"; })
|
||||||
|
(fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.4.0"; sha256 = "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba"; })
|
||||||
|
(fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; sha256 = "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59"; })
|
||||||
|
(fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; })
|
||||||
|
(fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; })
|
||||||
|
(fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.DispatchProxy"; version = "4.0.1"; sha256 = "1maglcnvm3h8bfmx3rvwg4wjda7527iqp38cg1r6vh9japrw1n0r"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; sha256 = "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.3.0"; sha256 = "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; sha256 = "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; })
|
||||||
|
(fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; })
|
||||||
|
(fetchNuGet { pname = "System.Resources.Reader"; version = "4.0.0"; sha256 = "1jafi73dcf1lalrir46manq3iy6xnxk2z7gpdpwg4wqql7dv3ril"; })
|
||||||
|
(fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; })
|
||||||
|
(fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.3"; sha256 = "1afi6s2r1mh1kygbjmfba6l4f87pi5sg13p4a48idqafli94qxln"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.1.0"; sha256 = "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.0.0"; sha256 = "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Loader"; version = "4.0.0"; sha256 = "0lpfi3psqcp6zxsjk2qyahal7zaawviimc8lhrlswhip2mx7ykl0"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.0.1"; sha256 = "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn"; })
|
||||||
|
(fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; sha256 = "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Claims"; version = "4.0.1"; sha256 = "03dw0ls49bvsrffgwycyifjgz0qzr9r85skqhdyhfd51fqf398n6"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Claims"; version = "4.3.0"; sha256 = "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.2.0"; sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.2.0"; sha256 = "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "5.0.0"; sha256 = "06hkx2za8jifpslkh491dfwzm5dxrsyxzj5lsc0achb6yzg4zqlw"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.0.0"; sha256 = "1cwv8lqj8r15q81d2pz2jwzzbaji0l28xfrpw29kdpsaypm92z2q"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; sha256 = "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.0.0"; sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.0.0"; sha256 = "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "6.0.4"; sha256 = "0hh5h38pnxmlrnvs72f2hzzpz4b2caiiv6xf8y7fzdg84r3imvfr"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.0.0"; sha256 = "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.4.0"; sha256 = "1q8ljvqhasyynp94a1d7jknk946m20lkwy2c3wa8zw2pc517fbj6"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.1.0"; sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Principal"; version = "4.0.1"; sha256 = "1nbzdfqvzzbgsfdd5qsh94d7dbg2v4sw0yx6himyn52zf8z6007p"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Principal"; version = "4.3.0"; sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.0.0"; sha256 = "1d3vc8i0zss9z8p4qprls4gbh7q4218l9845kclx7wvw41809k6z"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; })
|
||||||
|
(fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; sha256 = "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.0.1"; sha256 = "00wpm3b9y0k996rm9whxprngm8l500ajmzgy2ip9pgwk0icp06y3"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; sha256 = "1151hbyrcf8kyg1jz8k9awpbic98lwz9x129rg7zk1wrs6vjlpxl"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.Json"; version = "7.0.3"; sha256 = "0zjrnc9lshagm6kdb9bdh45dmlnkpwcpyssa896sda93ngbmj8k9"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; })
|
||||||
|
(fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading"; version = "4.0.11"; sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading"; version = "4.3.0"; sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Overlapped"; version = "4.0.1"; sha256 = "0fi79az3vmqdp9mv3wh2phblfjls89zlj6p9nc3i9f6wmfarj188"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "4.6.0"; sha256 = "0a1davr71wssyn4z1hr75lk82wqa0daz0vfwkmg1fm3kckfd72k1"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.0.0"; sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; sha256 = "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Tasks.Parallel"; version = "4.0.1"; sha256 = "114wdg32hr46dfsnns3pgs67kcha5jn47p5gg0mhxfn5vrkr2p75"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Thread"; version = "4.0.0"; sha256 = "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.0.10"; sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Timer"; version = "4.0.1"; sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; })
|
||||||
|
(fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.0.11"; sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.XmlDocument"; version = "4.0.1"; sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.XPath"; version = "4.0.1"; sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m"; })
|
||||||
|
(fetchNuGet { pname = "System.Xml.XPath.XDocument"; version = "4.0.1"; sha256 = "1fndc70lbjvh8kxs71c7cidfm8plznd61bg4fwpiyq3mq0qg5z0z"; })
|
||||||
|
(fetchNuGet { pname = "TestableIO.System.IO.Abstractions"; version = "19.2.64"; sha256 = "0ayrz1n777cgjgnp4iff90z43s9w3df62r93nkxg6wkga8v0dyr5"; })
|
||||||
|
(fetchNuGet { pname = "TestableIO.System.IO.Abstractions.TestingHelpers"; version = "19.2.64"; sha256 = "1s4bbj48iyvc638lmadg3mhflgihjfihb448fmi1y176gvlwwxy8"; })
|
||||||
|
(fetchNuGet { pname = "TestableIO.System.IO.Abstractions.Wrappers"; version = "19.2.64"; sha256 = "0l2lv45mcr54b8h37bwqag9n9qbh8vyyxz88mw6pcdz2k3z475jc"; })
|
||||||
|
(fetchNuGet { pname = "xunit"; version = "2.6.2"; sha256 = "0g5j0xwrv9cwrx91cjb9gas3wnkcwwk8krhdzsv50vlyp71pqqgz"; })
|
||||||
|
(fetchNuGet { pname = "xunit.abstractions"; version = "2.0.3"; sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh"; })
|
||||||
|
(fetchNuGet { pname = "xunit.analyzers"; version = "1.6.0"; sha256 = "1nwrz0mxk2hk2rwwabgr0a4wa3j22qwm94xvrzci39l58hmzxpbi"; })
|
||||||
|
(fetchNuGet { pname = "xunit.assert"; version = "2.6.2"; sha256 = "1nxg9m8qhh05i9linap7a8bdhxnr7x2pg7piw8hh76cshx0402ql"; })
|
||||||
|
(fetchNuGet { pname = "xunit.core"; version = "2.6.2"; sha256 = "0q0kzjdb0hxq4bajl11pvnwl1dp47b2adqx47j30bi2llj21ihj6"; })
|
||||||
|
(fetchNuGet { pname = "xunit.extensibility.core"; version = "2.6.2"; sha256 = "1a27ng02piwjr3ggff4mg0r92b6rabd1339clnxzqxwcyf620q2c"; })
|
||||||
|
(fetchNuGet { pname = "xunit.extensibility.execution"; version = "2.6.2"; sha256 = "1lhhlrq6lzd4w61x78dhxjz1453lnipjgph8sc52izgwq9d5xp1n"; })
|
||||||
|
(fetchNuGet { pname = "xunit.runner.visualstudio"; version = "2.5.4"; sha256 = "0mp3z8m5l4q09lr17142hff6p05zl189cwz3iavfqk8dpspyjgvd"; })
|
||||||
|
]
|
41
pkgs/by-name/do/dotnet-outdated/package.nix
Normal file
41
pkgs/by-name/do/dotnet-outdated/package.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildDotnetModule
|
||||||
|
, dotnetCorePackages
|
||||||
|
}:
|
||||||
|
buildDotnetModule rec {
|
||||||
|
pname = "dotnet-outdated";
|
||||||
|
version = "4.6.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dotnet-outdated";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-U5qCM+Um8bRafrDpbI5TnSN1nQ8mQpZ5W8Jao2hdAPw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dotnet-sdk = dotnetCorePackages.dotnet_8.sdk;
|
||||||
|
dotnet-runtime = dotnetCorePackages.dotnet_8.runtime;
|
||||||
|
useDotnetFromEnv = true;
|
||||||
|
|
||||||
|
nugetDeps = ./deps.nix;
|
||||||
|
|
||||||
|
projectFile = "src/DotNetOutdated/DotNetOutdated.csproj";
|
||||||
|
executables = "dotnet-outdated";
|
||||||
|
|
||||||
|
dotnetInstallFlags = [ "--framework" "net8.0" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A .NET Core global tool to display and update outdated NuGet packages in a project";
|
||||||
|
homepage = "https://github.com/dotnet-outdated/dotnet-outdated";
|
||||||
|
sourceProvenance = with sourceTypes; [
|
||||||
|
fromSource
|
||||||
|
# deps
|
||||||
|
binaryBytecode
|
||||||
|
binaryNativeCode
|
||||||
|
];
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ emilioziniades ];
|
||||||
|
mainProgram = "dotnet-outdated";
|
||||||
|
};
|
||||||
|
}
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
python3Packages.buildPythonApplication {
|
python3Packages.buildPythonApplication {
|
||||||
pname = "memtree";
|
pname = "memtree";
|
||||||
version = "unstable-2024-01-04";
|
version = "0-unstable-2024-01-04";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
@ -20,13 +20,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "nestopia";
|
pname = "nestopia";
|
||||||
version = "1.52.0";
|
version = "1.52.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "0ldsk00l";
|
owner = "0ldsk00l";
|
||||||
repo = "nestopia";
|
repo = "nestopia";
|
||||||
rev = finalAttrs.version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-kd5hZ88fCLL8ysGMj7HsrSA7eCI5SL2xxiRXJiZqBZ8=";
|
hash = "sha256-r8Z0Ejf5vWcdvxkUkUKJtipQIRoiwoRj0Bx06Gnxd08=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
, configTemplate ? null
|
, configTemplate ? null
|
||||||
, configTemplatePath ? null
|
, configTemplatePath ? null
|
||||||
, libnvidia-container
|
, libnvidia-container
|
||||||
, cudaPackages
|
, autoAddDriverRunpath
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert configTemplate != null -> (lib.isAttrs configTemplate && configTemplatePath == null);
|
assert configTemplate != null -> (lib.isAttrs configTemplate && configTemplatePath == null);
|
||||||
@ -87,7 +87,7 @@ buildGoModule rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cudaPackages.autoAddDriverRunpath
|
autoAddDriverRunpath
|
||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
buildDotnetModule rec {
|
buildDotnetModule rec {
|
||||||
pname = "pupdate";
|
pname = "pupdate";
|
||||||
version = "3.9.0";
|
version = "3.9.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mattpannella";
|
owner = "mattpannella";
|
||||||
repo = "${pname}";
|
repo = "${pname}";
|
||||||
rev = "${version}";
|
rev = "${version}";
|
||||||
hash = "sha256-T37zIYtfnoNJ/aHMfqKIx/zj6mqmY/3sN3LmxJglxHM=";
|
hash = "sha256-3Bts/jTyivZ+ch7UjFo3oGVRmVK2QhCYh8NkeQhDYDY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
104
pkgs/by-name/rc/rcu/Port-to-paramiko-3.x.patch
Normal file
104
pkgs/by-name/rc/rcu/Port-to-paramiko-3.x.patch
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
From aad61b320d65953fddec10b019a186fc67f57a5d Mon Sep 17 00:00:00 2001
|
||||||
|
From: OPNA2608 <opna2608@protonmail.com>
|
||||||
|
Date: Sat, 10 Feb 2024 12:20:29 +0100
|
||||||
|
Subject: [PATCH] src/model/transport.py: Port to paramiko 3.x
|
||||||
|
|
||||||
|
---
|
||||||
|
src/model/transport.py | 19 +++++++++----------
|
||||||
|
1 file changed, 9 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/model/transport.py b/src/model/transport.py
|
||||||
|
index 0c2ee16..5a2bd22 100644
|
||||||
|
--- a/src/model/transport.py
|
||||||
|
+++ b/src/model/transport.py
|
||||||
|
@@ -117,7 +117,6 @@ from paramiko.kex_gss import KexGSSGex, KexGSSGroup1, KexGSSGroup14
|
||||||
|
from paramiko.message import Message
|
||||||
|
from paramiko.packet import Packetizer, NeedRekeyException
|
||||||
|
from paramiko.primes import ModulusPack
|
||||||
|
-from paramiko.py3compat import string_types, long, byte_ord, b, input, PY2
|
||||||
|
from paramiko.rsakey import RSAKey
|
||||||
|
from paramiko.ecdsakey import ECDSAKey
|
||||||
|
from paramiko.server import ServerInterface
|
||||||
|
@@ -128,7 +127,7 @@ from paramiko.ssh_exception import (
|
||||||
|
ChannelException,
|
||||||
|
ProxyCommandFailure,
|
||||||
|
)
|
||||||
|
-from paramiko.util import retry_on_signal, ClosingContextManager, clamp_value
|
||||||
|
+from paramiko.util import ClosingContextManager, clamp_value
|
||||||
|
|
||||||
|
|
||||||
|
# for thread cleanup
|
||||||
|
@@ -396,7 +395,7 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
self.active = False
|
||||||
|
self.hostname = None
|
||||||
|
|
||||||
|
- if isinstance(sock, string_types):
|
||||||
|
+ if isinstance(sock, str):
|
||||||
|
# convert "host:port" into (host, port)
|
||||||
|
hl = sock.split(":", 1)
|
||||||
|
self.hostname = hl[0]
|
||||||
|
@@ -419,7 +418,7 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
sock = socket.socket(af, socket.SOCK_STREAM)
|
||||||
|
sock.settimeout(1)
|
||||||
|
try:
|
||||||
|
- retry_on_signal(lambda: sock.connect((hostname, port)))
|
||||||
|
+ sock.connect((hostname, port))
|
||||||
|
except socket.error as e:
|
||||||
|
reason = str(e)
|
||||||
|
else:
|
||||||
|
@@ -542,7 +541,7 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
"""
|
||||||
|
Returns a string representation of this object, for debugging.
|
||||||
|
"""
|
||||||
|
- id_ = hex(long(id(self)) & xffffffff)
|
||||||
|
+ id_ = hex(int(id(self)) & xffffffff)
|
||||||
|
out = "<paramiko.Transport at {}".format(id_)
|
||||||
|
if not self.active:
|
||||||
|
out += " (unconnected)"
|
||||||
|
@@ -1123,7 +1122,7 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
m = Message()
|
||||||
|
m.add_byte(cMSG_IGNORE)
|
||||||
|
if byte_count is None:
|
||||||
|
- byte_count = (byte_ord(os.urandom(1)) % 32) + 10
|
||||||
|
+ byte_count = (os.urandom(1) % 32) + 10
|
||||||
|
m.add_bytes(os.urandom(byte_count))
|
||||||
|
self._send_user_message(m)
|
||||||
|
|
||||||
|
@@ -1802,7 +1801,7 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
def stop_thread(self):
|
||||||
|
self.active = False
|
||||||
|
self.packetizer.close()
|
||||||
|
- if PY2:
|
||||||
|
+ if False:
|
||||||
|
# Original join logic; #520 doesn't appear commonly present under
|
||||||
|
# Python 2.
|
||||||
|
while self.is_alive() and self is not threading.current_thread():
|
||||||
|
@@ -1909,7 +1908,7 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
m = Message()
|
||||||
|
m.add_mpint(self.K)
|
||||||
|
m.add_bytes(self.H)
|
||||||
|
- m.add_byte(b(id))
|
||||||
|
+ m.add_byte(id.encode("utf8"))
|
||||||
|
m.add_bytes(self.session_id)
|
||||||
|
# Fallback to SHA1 for kex engines that fail to specify a hex
|
||||||
|
# algorithm, or for e.g. transport tests that don't run kexinit.
|
||||||
|
@@ -2037,14 +2036,14 @@ class Transport(threading.Thread, ClosingContextManager):
|
||||||
|
|
||||||
|
# active=True occurs before the thread is launched, to avoid a race
|
||||||
|
_active_threads.append(self)
|
||||||
|
- tid = hex(long(id(self)) & xffffffff)
|
||||||
|
+ tid = hex(int(id(self)) & xffffffff)
|
||||||
|
if self.server_mode:
|
||||||
|
self._log(DEBUG, "starting thread (server mode): {}".format(tid))
|
||||||
|
else:
|
||||||
|
self._log(DEBUG, "starting thread (client mode): {}".format(tid))
|
||||||
|
try:
|
||||||
|
try:
|
||||||
|
- self.packetizer.write_all(b(self.local_version + "\r\n"))
|
||||||
|
+ self.packetizer.write_all((self.local_version + "\r\n").encode("utf8"))
|
||||||
|
self._log(
|
||||||
|
DEBUG,
|
||||||
|
"Local version/idstring: {}".format(self.local_version),
|
||||||
|
--
|
||||||
|
2.42.0
|
||||||
|
|
152
pkgs/by-name/rc/rcu/package.nix
Normal file
152
pkgs/by-name/rc/rcu/package.nix
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, requireFile
|
||||||
|
, fetchpatch
|
||||||
|
, runCommand
|
||||||
|
, rcu
|
||||||
|
, testers
|
||||||
|
, copyDesktopItems
|
||||||
|
, desktopToDarwinBundle
|
||||||
|
, libsForQt5
|
||||||
|
, makeDesktopItem
|
||||||
|
, python3Packages
|
||||||
|
, system-config-printer
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "rcu";
|
||||||
|
version = "2024.001n";
|
||||||
|
|
||||||
|
format = "other";
|
||||||
|
|
||||||
|
src = let
|
||||||
|
src-tarball = requireFile {
|
||||||
|
name = "rcu-d${version}-source.tar.gz";
|
||||||
|
sha256 = "1snmf2cr242k946q6fh5b5fqdyafdbs8gbbdzchjhm7n9r1kxyca";
|
||||||
|
url = "http://www.davisr.me/projects/rcu/";
|
||||||
|
};
|
||||||
|
in runCommand "${src-tarball.name}-unpacked" {} ''
|
||||||
|
gunzip -ck ${src-tarball} | tar -xvf-
|
||||||
|
mv rcu $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./Port-to-paramiko-3.x.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace src/main.py \
|
||||||
|
--replace-fail "ui_basepath = '.'" "ui_basepath = '$out/share/rcu'"
|
||||||
|
|
||||||
|
substituteInPlace package_support/gnulinux/50-remarkable.rules \
|
||||||
|
--replace-fail 'GROUP="yourgroup"' 'GROUP="users"'
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
copyDesktopItems
|
||||||
|
libsForQt5.wrapQtAppsHook
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
desktopToDarwinBundle
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libsForQt5.qtbase
|
||||||
|
libsForQt5.qtwayland
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
certifi
|
||||||
|
packaging
|
||||||
|
paramiko
|
||||||
|
pdfminer-six
|
||||||
|
pikepdf
|
||||||
|
pillow
|
||||||
|
protobuf
|
||||||
|
pyside2
|
||||||
|
];
|
||||||
|
|
||||||
|
desktopItems = [
|
||||||
|
(makeDesktopItem {
|
||||||
|
name = "rcu";
|
||||||
|
desktopName = "reMarkable Connection Utility";
|
||||||
|
comment = "All-in-one offline/local management software for reMarkable e-paper tablets";
|
||||||
|
icon = "rcu";
|
||||||
|
exec = "rcu";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
dontConfigure = true;
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/{bin,share}
|
||||||
|
cp -r src $out/share/rcu
|
||||||
|
|
||||||
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
||||||
|
install -Dm644 package_support/gnulinux/50-remarkable.rules $out/etc/udev/rules.d/50-remarkable.rules
|
||||||
|
'' + ''
|
||||||
|
|
||||||
|
# Keep source from being GC'd by linking into it
|
||||||
|
|
||||||
|
for icondir in $(find icons -type d -name '[0-9]*x[0-9]*'); do
|
||||||
|
iconsize=$(basename $icondir)
|
||||||
|
mkdir -p $out/share/icons/hicolor/$iconsize/apps
|
||||||
|
ln -s ${src}/icons/$iconsize/rcu-icon-$iconsize.png $out/share/icons/hicolor/$iconsize/apps/rcu.png
|
||||||
|
done
|
||||||
|
|
||||||
|
mkdir -p $out/share/icons/hicolor/scalable/apps
|
||||||
|
ln -s ${src}/icons/64x64/rcu-icon-64x64.svg $out/share/icons/hicolor/scalable/apps/rcu.svg
|
||||||
|
|
||||||
|
mkdir -p $out/share/doc/rcu
|
||||||
|
for docfile in {COPYING,manual.pdf}; do
|
||||||
|
ln -s ${src}/manual/$docfile $out/share/doc/rcu/$docfile
|
||||||
|
done
|
||||||
|
|
||||||
|
mkdir -p $out/share/licenses/rcu
|
||||||
|
ln -s ${src}/COPYING $out/share/licenses/rcu/COPYING
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Manually creating wrapper, hook struggles with lack of shebang & symlink
|
||||||
|
dontWrapPythonPrograms = true;
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
makeWrapperArgs+=(
|
||||||
|
"''${qtWrapperArgs[@]}"
|
||||||
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ system-config-printer ]}
|
||||||
|
'' + ''
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
makeWrapper ${lib.getExe python3Packages.python} $out/bin/rcu \
|
||||||
|
''${makeWrapperArgs[@]} \
|
||||||
|
--prefix PYTHONPATH : ${python3Packages.makePythonPath (propagatedBuildInputs ++ [(placeholder "out")])} \
|
||||||
|
--add-flags $out/share/rcu/main.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
tests.version = testers.testVersion {
|
||||||
|
package = rcu;
|
||||||
|
version = let
|
||||||
|
versionSuffixPos = (lib.strings.stringLength rcu.version) - 1;
|
||||||
|
in
|
||||||
|
"d${lib.strings.substring 0 versionSuffixPos rcu.version}(${lib.strings.substring versionSuffixPos 1 rcu.version})";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
mainProgram = "rcu";
|
||||||
|
description = "All-in-one offline/local management software for reMarkable e-paper tablets";
|
||||||
|
homepage = "http://www.davisr.me/projects/rcu/";
|
||||||
|
license = licenses.agpl3Plus;
|
||||||
|
maintainers = with maintainers; [ OPNA2608 ];
|
||||||
|
};
|
||||||
|
}
|
34
pkgs/by-name/sc/scion-bootstrapper/package.nix
Normal file
34
pkgs/by-name/sc/scion-bootstrapper/package.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "scion-bootstrapper";
|
||||||
|
version = "0.0.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "netsec-ethz";
|
||||||
|
repo = "bootstrapper";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-X4lNgd6klIw0NW9NVG+d1JK+WNfOclbu43GYucelB7o=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-X4bOIvNlyQoAWOd3L6suE64KnlCV6kuE1ieVecVYWOw=";
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/bin/bootstrapper $out/bin/scion-bootstrapper
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "bootstrapper for SCION network configuration";
|
||||||
|
homepage = "https://github.com/netsec-ethz/bootstrapper";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ matthewcroughan sarcasticadmin ];
|
||||||
|
mainProgram = "scion-bootstrapper";
|
||||||
|
};
|
||||||
|
}
|
@ -10,16 +10,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "swww";
|
pname = "swww";
|
||||||
version = "0.8.2";
|
version = "0.9.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "LGFae";
|
owner = "LGFae";
|
||||||
repo = "swww";
|
repo = "swww";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-n7YdUmIZGu7W7cX6OvVW+wbkKjFvont4hEAhZXYDQd8=";
|
hash = "sha256-JtwNrdXZbmR7VZeRiXcLEEOq1z7bF8idjp2D1Zpf3Z4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-lZC71M3lbsI+itMydAp5VCz0cpSHo/FpkQFC1NlN4DU=";
|
cargoHash = "sha256-FC3HeqWAMOTm2Tmzg+Sn/j0ZXyd8nsYH64MlwQwr8W0=";
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
lz4
|
lz4
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "tgpt";
|
pname = "tgpt";
|
||||||
version = "2.7.2";
|
version = "2.7.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "aandrew-me";
|
owner = "aandrew-me";
|
||||||
repo = "tgpt";
|
repo = "tgpt";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-FbnweHiKfxqFegZnRlvdVbTmH4ImjddVOBlbGRT/SGw=";
|
hash = "sha256-tInbOCrGXZkyGrkXSppK7Qugh0E2CdjmybMeH49Wc5s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-docq/r6yyMPsuUyFbtCMaYfEVL0gLmyTy4PbrAemR00=";
|
vendorHash = "sha256-docq/r6yyMPsuUyFbtCMaYfEVL0gLmyTy4PbrAemR00=";
|
||||||
|
@ -27,11 +27,11 @@ let
|
|||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "unciv";
|
pname = "unciv";
|
||||||
version = "4.10.19";
|
version = "4.10.21";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/yairm210/Unciv/releases/download/${version}/Unciv.jar";
|
url = "https://github.com/yairm210/Unciv/releases/download/${version}/Unciv.jar";
|
||||||
hash = "sha256-f9fg2Clz9CjoC8xzCguJ2A3Aczom+KjEyIlMJC2oS/o=";
|
hash = "sha256-JnuJbmKGqtEdFiMnA5RvCfdox2WTABwxNI3Zdk6wNU8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
|
38
pkgs/by-name/un/uni-sync/config_path.patch
Normal file
38
pkgs/by-name/un/uni-sync/config_path.patch
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
diff --git a/src/main.rs b/src/main.rs
|
||||||
|
index 357a33b..7073497 100644
|
||||||
|
--- a/src/main.rs
|
||||||
|
+++ b/src/main.rs
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-use std::env;
|
||||||
|
+use std::path::PathBuf;
|
||||||
|
|
||||||
|
mod devices;
|
||||||
|
|
||||||
|
@@ -8,12 +8,23 @@ fn main() -> Result<(), std::io::Error> {
|
||||||
|
configs: vec![]
|
||||||
|
};
|
||||||
|
|
||||||
|
- let mut config_path = env::current_exe()?;
|
||||||
|
- config_path.pop();
|
||||||
|
- config_path.push("uni-sync.json");
|
||||||
|
+ let mut config_path = PathBuf::from("/etc/uni-sync/uni-sync.json");
|
||||||
|
|
||||||
|
if !config_path.exists() {
|
||||||
|
- std::fs::write(&config_path, serde_json::to_string_pretty(&configs).unwrap())?;
|
||||||
|
+ match std::fs::create_dir_all(config_path.parent().unwrap()) {
|
||||||
|
+ Ok(result) => result,
|
||||||
|
+ Err(_) => {
|
||||||
|
+ println!("Please run uni-sync with elevated permissions.");
|
||||||
|
+ std::process::exit(0);
|
||||||
|
+ }
|
||||||
|
+ };
|
||||||
|
+ match std::fs::write(&config_path, serde_json::to_string_pretty(&configs).unwrap()) {
|
||||||
|
+ Ok(result) => result,
|
||||||
|
+ Err(_) => {
|
||||||
|
+ println!("Please run uni-sync with elevated permissions.");
|
||||||
|
+ std::process::exit(0);
|
||||||
|
+ }
|
||||||
|
+ };
|
||||||
|
}
|
||||||
|
|
||||||
|
let config_content = std::fs::read_to_string(&config_path).unwrap();
|
14
pkgs/by-name/un/uni-sync/ignore_read-only_filesystem.patch
Normal file
14
pkgs/by-name/un/uni-sync/ignore_read-only_filesystem.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
diff --git a/src/main.rs b/src/main.rs
|
||||||
|
index f07cc64..357a33b 100644
|
||||||
|
--- a/src/main.rs
|
||||||
|
+++ b/src/main.rs
|
||||||
|
@@ -20,7 +20,7 @@ fn main() -> Result<(), std::io::Error> {
|
||||||
|
configs = serde_json::from_str::<devices::Configs>(&config_content).unwrap();
|
||||||
|
|
||||||
|
let new_configs = devices::run(configs);
|
||||||
|
- std::fs::write(&config_path, serde_json::to_string_pretty(&new_configs).unwrap())?;
|
||||||
|
+ std::fs::write(&config_path, serde_json::to_string_pretty(&new_configs).unwrap());
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
\ No newline at end of file
|
35
pkgs/by-name/un/uni-sync/package.nix
Normal file
35
pkgs/by-name/un/uni-sync/package.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, pkg-config
|
||||||
|
, libudev-zero
|
||||||
|
}:
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "uni-sync";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "EightB1ts";
|
||||||
|
repo = pname;
|
||||||
|
rev = "ca349942c06fabcc028ce24e79fc6ce7c758452b";
|
||||||
|
hash = "sha256-K2zX3rKtTaKO6q76xlxX+rDLL0gEsJ2l8x/s1vsp+ZQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ libudev-zero ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./config_path.patch
|
||||||
|
./ignore_read-only_filesystem.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoHash = "sha256-DdmjP0h15cXkHJZxvOcINgoZ/EhTgu/7iYb+bgsIXxU=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A synchronization tool for Lian Li Uni Controllers";
|
||||||
|
homepage = "https://github.com/EightB1ts/uni-sync";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ yunfachi ];
|
||||||
|
mainProgram = "uni-sync";
|
||||||
|
};
|
||||||
|
}
|
3869
pkgs/by-name/wl/wlx-overlay-s/Cargo.lock
generated
Normal file
3869
pkgs/by-name/wl/wlx-overlay-s/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
83
pkgs/by-name/wl/wlx-overlay-s/package.nix
Normal file
83
pkgs/by-name/wl/wlx-overlay-s/package.nix
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, alsa-lib
|
||||||
|
, dbus
|
||||||
|
, fontconfig
|
||||||
|
, libxkbcommon
|
||||||
|
, makeWrapper
|
||||||
|
, openvr
|
||||||
|
, openxr-loader
|
||||||
|
, pipewire
|
||||||
|
, pkg-config
|
||||||
|
, pulseaudio
|
||||||
|
, shaderc
|
||||||
|
, wayland
|
||||||
|
, xorg
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "wlx-overlay-s";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "galister";
|
||||||
|
repo = "wlx-overlay-s";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-5uvdLBUnc8ba6b/dJNWsuqjnbbidaCcqgvSafFEXaMU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"ovr_overlay-0.0.0" = "sha256-b2sGzBOB2aNNJ0dsDBjgV2jH3ROO/Cdu8AIHPSXMCPg=";
|
||||||
|
"vulkano-0.34.0" = "sha256-0ZIxU2oItT35IFnS0YTVNmM775x21gXOvaahg/B9sj8=";
|
||||||
|
"wlx-capture-0.3.1" = "sha256-kK3OQMdIqCLZlgZuevNtfMDmpR8J2DFFD8jRHHWAvSA=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
makeWrapper
|
||||||
|
pkg-config
|
||||||
|
rustPlatform.bindgenHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
alsa-lib
|
||||||
|
dbus
|
||||||
|
fontconfig
|
||||||
|
libxkbcommon
|
||||||
|
openvr
|
||||||
|
openxr-loader
|
||||||
|
pipewire
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXrandr
|
||||||
|
];
|
||||||
|
|
||||||
|
env.SHADERC_LIB_DIR = "${lib.getLib shaderc}/lib";
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteAllInPlace src/res/watch.yaml \
|
||||||
|
--replace '"pactl"' '"${lib.getExe' pulseaudio "pactl"}"'
|
||||||
|
|
||||||
|
# TODO: src/res/keyboard.yaml references 'whisper_stt'
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
patchelf $out/bin/wlx-overlay-s \
|
||||||
|
--add-needed ${lib.getLib wayland}/lib/libwayland-client.so.0 \
|
||||||
|
--add-needed ${lib.getLib libxkbcommon}/lib/libxkbcommon.so.0
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Wayland/X11 desktop overlay for SteamVR and OpenXR, Vulkan edition";
|
||||||
|
homepage = "https://github.com/galister/wlx-overlay-s";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ Scrumplex ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
broken = stdenv.isAarch64;
|
||||||
|
mainProgram = "wlx-overlay-s";
|
||||||
|
};
|
||||||
|
}
|
@ -43,7 +43,7 @@ let
|
|||||||
elvis-erlang = callPackage ./elvis-erlang { };
|
elvis-erlang = callPackage ./elvis-erlang { };
|
||||||
|
|
||||||
# BEAM-based languages.
|
# BEAM-based languages.
|
||||||
elixir = elixir_1_15;
|
elixir = elixir_1_16;
|
||||||
|
|
||||||
elixir_1_16 = lib'.callElixir ../interpreters/elixir/1.16.nix {
|
elixir_1_16 = lib'.callElixir ../interpreters/elixir/1.16.nix {
|
||||||
inherit erlang;
|
inherit erlang;
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "aspectj";
|
pname = "aspectj";
|
||||||
version = "1.9.21";
|
version = "1.9.21.2";
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
src = let
|
src = let
|
||||||
versionSnakeCase = builtins.replaceStrings ["."] ["_"] version;
|
versionSnakeCase = builtins.replaceStrings ["."] ["_"] version;
|
||||||
in fetchurl {
|
in fetchurl {
|
||||||
url = "https://github.com/eclipse/org.aspectj/releases/download/V${versionSnakeCase}/aspectj-${version}.jar";
|
url = "https://github.com/eclipse/org.aspectj/releases/download/V${versionSnakeCase}/aspectj-${version}.jar";
|
||||||
sha256 = "sha256-/cdfEpUrK39ssVualCKWdGhpymIhq7y2oRxYJAENhU0=";
|
sha256 = "sha256-wqQtyopS03zX+GJme5YZwWiACqO4GAYFr3XAjzqSFnQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit jre;
|
inherit jre;
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
, runCommand
|
, runCommand
|
||||||
, expect
|
, expect
|
||||||
, curl
|
, curl
|
||||||
|
, installShellFiles
|
||||||
}: type: args: stdenv.mkDerivation (finalAttrs: args // {
|
}: type: args: stdenv.mkDerivation (finalAttrs: args // {
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
|
||||||
@ -27,6 +28,16 @@
|
|||||||
export DOTNET_SKIP_WORKLOAD_INTEGRITY_CHECK=1 # Skip integrity check on first run, which fails due to read-only directory
|
export DOTNET_SKIP_WORKLOAD_INTEGRITY_CHECK=1 # Skip integrity check on first run, which fails due to read-only directory
|
||||||
'' + args.setupHook or "");
|
'' + args.setupHook or "");
|
||||||
|
|
||||||
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ installShellFiles ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# completions snippets taken from https://learn.microsoft.com/en-us/dotnet/core/tools/enable-tab-autocomplete
|
||||||
|
installShellCompletion --cmd dotnet \
|
||||||
|
--bash ${./completions/dotnet.bash} \
|
||||||
|
--zsh ${./completions/dotnet.zsh} \
|
||||||
|
--fish ${./completions/dotnet.fish}
|
||||||
|
'';
|
||||||
|
|
||||||
} // lib.optionalAttrs (type == "sdk") {
|
} // lib.optionalAttrs (type == "sdk") {
|
||||||
passthru = {
|
passthru = {
|
||||||
tests = let
|
tests = let
|
||||||
|
13
pkgs/development/compilers/dotnet/completions/dotnet.bash
Normal file
13
pkgs/development/compilers/dotnet/completions/dotnet.bash
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# bash parameter completion for the dotnet CLI
|
||||||
|
|
||||||
|
function _dotnet_bash_complete()
|
||||||
|
{
|
||||||
|
local cur="${COMP_WORDS[COMP_CWORD]}" IFS=$'\n' # On Windows you may need to use use IFS=$'\r\n'
|
||||||
|
local candidates
|
||||||
|
|
||||||
|
read -d '' -ra candidates < <(dotnet complete --position "${COMP_POINT}" "${COMP_LINE}" 2>/dev/null)
|
||||||
|
|
||||||
|
read -d '' -ra COMPREPLY < <(compgen -W "${candidates[*]:-}" -- "$cur")
|
||||||
|
}
|
||||||
|
|
||||||
|
complete -f -F _dotnet_bash_complete dotnet
|
@ -0,0 +1 @@
|
|||||||
|
complete -f -c dotnet -a "(dotnet complete (commandline -cp))"
|
18
pkgs/development/compilers/dotnet/completions/dotnet.zsh
Normal file
18
pkgs/development/compilers/dotnet/completions/dotnet.zsh
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# zsh parameter completion for the dotnet CLI
|
||||||
|
|
||||||
|
_dotnet_zsh_complete()
|
||||||
|
{
|
||||||
|
local completions=("$(dotnet complete "$words")")
|
||||||
|
|
||||||
|
# If the completion list is empty, just continue with filename selection
|
||||||
|
if [ -z "$completions" ]
|
||||||
|
then
|
||||||
|
_arguments '*::arguments: _normal'
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This is not a variable assignment, don't remove spaces!
|
||||||
|
_values = "${(ps:\n:)completions}"
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _dotnet_zsh_complete dotnet
|
@ -29,13 +29,13 @@ in
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "tinygo";
|
pname = "tinygo";
|
||||||
version = "0.31.1";
|
version = "0.31.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tinygo-org";
|
owner = "tinygo-org";
|
||||||
repo = "tinygo";
|
repo = "tinygo";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-YocRTgGSyjnQsYd4a2nCQ0vdQi/z2gHPguix5xIkkgc=";
|
sha256 = "sha256-e0zXxIdAtJZXJdP/S6lHRnPm5Rsf638Fhox8XcqOWrk=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -71,8 +71,7 @@ in
|
|||||||
if version == "8.11.0+0.11.1" then version
|
if version == "8.11.0+0.11.1" then version
|
||||||
else builtins.replaceStrings [ "+" ] [ "." ] version
|
else builtins.replaceStrings [ "+" ] [ "." ] version
|
||||||
}.tbz";
|
}.tbz";
|
||||||
# abort/syntax error will fail package set eval, but throw is "fine"
|
sha256 = release."${version}".sha256;
|
||||||
sha256 = release."${version}".sha256 or (throw "Unknown version '${version}'");
|
|
||||||
};
|
};
|
||||||
|
|
||||||
patches =
|
patches =
|
||||||
|
4
pkgs/development/cuda-modules/aliases.nix
Normal file
4
pkgs/development/cuda-modules/aliases.nix
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Packges which have been deprecated or removed from cudaPackages
|
||||||
|
final: prev: {
|
||||||
|
|
||||||
|
}
|
@ -1,10 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, clang-tools
|
, asioSupport ? true
|
||||||
, llvmPackages
|
, asio
|
||||||
, boost179
|
, boost180
|
||||||
, protobuf
|
|
||||||
, python3Support ? false
|
|
||||||
, python3
|
|
||||||
, log4cxxSupport ? false
|
, log4cxxSupport ? false
|
||||||
, log4cxx
|
, log4cxx
|
||||||
, snappySupport ? false
|
, snappySupport ? false
|
||||||
@ -17,7 +14,8 @@
|
|||||||
, gtestSupport ? false
|
, gtestSupport ? false
|
||||||
, cmake
|
, cmake
|
||||||
, curl
|
, curl
|
||||||
, fetchurl
|
, fetchFromGitHub
|
||||||
|
, protobuf
|
||||||
, jsoncpp
|
, jsoncpp
|
||||||
, openssl
|
, openssl
|
||||||
, pkg-config
|
, pkg-config
|
||||||
@ -37,48 +35,39 @@ let
|
|||||||
*/
|
*/
|
||||||
enableCmakeFeature = p: if (p == null || p == false) then "OFF" else "ON";
|
enableCmakeFeature = p: if (p == null || p == false) then "OFF" else "ON";
|
||||||
|
|
||||||
# Not really sure why I need to do this.. If I call clang-tools without the override it defaults to a different version and fails
|
defaultOptionals = [ protobuf ]
|
||||||
clangTools = clang-tools.override { inherit stdenv llvmPackages; };
|
|
||||||
# If boost has python enabled, then boost-python package will be installed which is used by libpulsars python wrapper
|
|
||||||
boost = if python3Support then boost179.override { inherit stdenv; enablePython = python3Support; python = python3; } else boost179;
|
|
||||||
defaultOptionals = [ boost protobuf ]
|
|
||||||
++ lib.optional python3Support python3
|
|
||||||
++ lib.optional snappySupport snappy.dev
|
++ lib.optional snappySupport snappy.dev
|
||||||
++ lib.optional zlibSupport zlib
|
++ lib.optional zlibSupport zlib
|
||||||
++ lib.optional zstdSupport zstd
|
++ lib.optional zstdSupport zstd
|
||||||
++ lib.optional log4cxxSupport log4cxx;
|
++ lib.optional log4cxxSupport log4cxx
|
||||||
|
++ lib.optional asioSupport asio
|
||||||
|
++ lib.optional (!asioSupport) boost180;
|
||||||
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: rec {
|
||||||
pname = "libpulsar";
|
pname = "libpulsar";
|
||||||
version = "2.10.2";
|
version = "3.5.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
hash = "sha256-IONnsSDbnX2qz+Xya0taHYSViTOiRI36AfcxmY3dNpo=";
|
owner = "apache";
|
||||||
url = "mirror://apache/pulsar/pulsar-${version}/apache-pulsar-${version}-src.tar.gz";
|
repo = "pulsar-client-cpp";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-pNeoStDryyMtBolpp5nT5GFjYPuXg2ks1Ka1mjjN/9k=";
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = "apache-pulsar-${version}-src/pulsar-client-cpp";
|
nativeBuildInputs = [ cmake pkg-config ]
|
||||||
|
|
||||||
# clang-tools needed for clang-format
|
|
||||||
nativeBuildInputs = [ cmake pkg-config clangTools ]
|
|
||||||
++ defaultOptionals
|
++ defaultOptionals
|
||||||
++ lib.optional gtestSupport gtest.dev;
|
++ lib.optional gtestSupport gtest.dev;
|
||||||
|
|
||||||
buildInputs = [ jsoncpp openssl curl ]
|
buildInputs = [ jsoncpp openssl curl ]
|
||||||
++ defaultOptionals;
|
++ defaultOptionals;
|
||||||
|
|
||||||
# Needed for GCC on Linux
|
|
||||||
env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=return-type" ];
|
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DBUILD_TESTS=${enableCmakeFeature gtestSupport}"
|
"-DBUILD_TESTS=${enableCmakeFeature gtestSupport}"
|
||||||
"-DBUILD_PYTHON_WRAPPER=${enableCmakeFeature python3Support}"
|
|
||||||
"-DUSE_LOG4CXX=${enableCmakeFeature log4cxxSupport}"
|
"-DUSE_LOG4CXX=${enableCmakeFeature log4cxxSupport}"
|
||||||
"-DClangTools_PATH=${clangTools}/bin"
|
"-DUSE_ASIO=${enableCmakeFeature asioSupport}"
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
installCheckPhase = ''
|
installCheckPhase = ''
|
||||||
echo ${lib.escapeShellArg ''
|
echo ${lib.escapeShellArg ''
|
||||||
@ -92,11 +81,11 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://pulsar.apache.org/docs/en/client-libraries-cpp";
|
homepage = "https://pulsar.apache.org/docs/next/client-libraries-cpp/";
|
||||||
description = "Apache Pulsar C++ library";
|
description = "Apache Pulsar C++ library";
|
||||||
|
changelog = "https://github.com/apache/pulsar-client-cpp/releases/tag/v${version}";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ maintainers.corbanr ];
|
maintainers = with maintainers; [ corbanr gaelreyrol ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
@ -11,13 +11,13 @@ let
|
|||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "librime";
|
pname = "librime";
|
||||||
version = "1.10.0";
|
version = "1.11.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rime";
|
owner = "rime";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-tflWBfH1+1AFvkq0A6mgsKl+jq6m5c83GA56LWxdnlw=";
|
sha256 = "sha256-yP7YmmeA3k0/NI4XPsC/k2BX4mMnyMJvguiFZIWo8I8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
@ -321,10 +321,13 @@ with prev;
|
|||||||
});
|
});
|
||||||
|
|
||||||
luadbi-mysql = prev.luadbi-mysql.overrideAttrs (oa: {
|
luadbi-mysql = prev.luadbi-mysql.overrideAttrs (oa: {
|
||||||
luarocksConfig.variables = {
|
|
||||||
# Can't just be /include and /lib, unfortunately needs the trailing 'mysql'
|
luarocksConfig = lib.recursiveUpdate oa.luarocksConfig {
|
||||||
MYSQL_INCDIR = "${libmysqlclient.dev}/include/mysql";
|
variables = {
|
||||||
MYSQL_LIBDIR = "${libmysqlclient}/lib/mysql";
|
# Can't just be /include and /lib, unfortunately needs the trailing 'mysql'
|
||||||
|
MYSQL_INCDIR = "${libmysqlclient.dev}/include/mysql";
|
||||||
|
MYSQL_LIBDIR = "${libmysqlclient}/lib/mysql";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
buildInputs = oa.buildInputs ++ [
|
buildInputs = oa.buildInputs ++ [
|
||||||
mariadb.client
|
mariadb.client
|
||||||
|
@ -2,14 +2,16 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, h5py
|
, h5py
|
||||||
, nose
|
, numpy
|
||||||
|
, pynose
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "annoy";
|
pname = "annoy";
|
||||||
version = "1.17.3";
|
version = "1.17.3";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
@ -18,12 +20,22 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-nL/r7+Cl+EPropxr5MhNYB9PQa1N7QSG8biMOwdznBU=";
|
hash = "sha256-nL/r7+Cl+EPropxr5MhNYB9PQa1N7QSG8biMOwdznBU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace-fail "'nose>=1.0'" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
h5py
|
h5py
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
nose
|
numpy
|
||||||
|
pynose
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "asf-search";
|
pname = "asf-search";
|
||||||
version = "7.0.7";
|
version = "7.0.8";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -27,7 +27,7 @@ buildPythonPackage rec {
|
|||||||
owner = "asfadmin";
|
owner = "asfadmin";
|
||||||
repo = "Discovery-asf_search";
|
repo = "Discovery-asf_search";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-4DqZGDg9VZsBWaVb3WpAegZVW1lk/5f9AR5Gxgik1gQ=";
|
hash = "sha256-wmTt6JFuigpFo/0s9DmKfAZT0dPPyoNeVRlh8vz/jkY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -365,14 +365,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "boto3-stubs";
|
pname = "boto3-stubs";
|
||||||
version = "1.34.73";
|
version = "1.34.74";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-ok9aPF2xGPxYxkh/GozIpKggYmB5Fr+pcxKXygspBpc=";
|
hash = "sha256-Lvsns5qA9BtPc/kk3VKWtkcRrJpfVTTCvw4SUOZFJh0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "clarifai-grpc";
|
pname = "clarifai-grpc";
|
||||||
version = "10.2.2";
|
version = "10.2.3";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -20,14 +20,14 @@ buildPythonPackage rec {
|
|||||||
owner = "Clarifai";
|
owner = "Clarifai";
|
||||||
repo = "clarifai-python-grpc";
|
repo = "clarifai-python-grpc";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-beBUluOTu90H2pinBWhb0Q1KmQ0vq23k+ZyCJVoc7ls=";
|
hash = "sha256-Dim0ZRYNzmlBqrqqs0CG+I/XQYpH9DuPISXoYxi92Dc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
googleapis-common-protos
|
googleapis-common-protos
|
||||||
grpcio
|
grpcio
|
||||||
protobuf
|
protobuf
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "flask-paginate";
|
pname = "flask-paginate";
|
||||||
version = "2023.10.24";
|
version = "2024.3.28";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
owner = "lixxu";
|
owner = "lixxu";
|
||||||
repo = "flask-paginate";
|
repo = "flask-paginate";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-9633YLHMF9S1DLK7ZS4qmCOzslXdHLSgpKoJFNvkXlA=";
|
hash = "sha256-HqjgmqRH83N+CbTnkkEJnuo+c+n5wLwdsPXyY2i5XRg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "gspread";
|
pname = "gspread";
|
||||||
version = "6.0.2";
|
version = "6.1.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
|||||||
owner = "burnash";
|
owner = "burnash";
|
||||||
repo = "gspread";
|
repo = "gspread";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-NY6Q45/XuidDUeBG0QfVaStwp2+BqMSgefDifHu2erU=";
|
hash = "sha256-kuXPX+VY0qz4fldGYPbzZMFx+blzsmueews1W+AjQb0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -14,14 +14,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "irc";
|
pname = "irc";
|
||||||
version = "20.3.1";
|
version = "20.4.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-gGuDr4lNixIe0eFIZqkGQBKFiN5swElcTsssXsJyKAs=";
|
hash = "sha256-fSUX9VZta/Oqhdf5jHdYth8NY+6RW/2fb1ZxOXNmRPk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jira";
|
pname = "jira";
|
||||||
version = "3.6.0";
|
version = "3.8.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -31,7 +31,7 @@ buildPythonPackage rec {
|
|||||||
owner = "pycontribs";
|
owner = "pycontribs";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-Wv6xjk1nyFIDKAypyQRlqFglzxe9Ems2ON3PEehUP/Q=";
|
hash = "sha256-zE0fceCnyv0qKak8sRCXPCauC0KeOmczY/ZkVoHNcS8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "llama-index-graph-stores-neo4j";
|
pname = "llama-index-graph-stores-neo4j";
|
||||||
version = "0.1.3";
|
version = "0.1.4";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "llama_index_graph_stores_neo4j";
|
pname = "llama_index_graph_stores_neo4j";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-AUWezvdONxz5H42VpTjh7NrBkTdWjtBJyMvA8kSh5w4=";
|
hash = "sha256-zr3EAFuLzbQKnGPVE6BsLEtNpnfYhDq9brxWPFtQiG8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "llama-index-llms-openai";
|
pname = "llama-index-llms-openai";
|
||||||
version = "0.1.13";
|
version = "0.1.14";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "llama_index_llms_openai";
|
pname = "llama_index_llms_openai";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-wP2TIlWsm/crawLDgR7rvzQxqnYDrqqzHIEVR/REsco=";
|
hash = "sha256-frpmiCroT6QrGIlBI0uEJnxI5EnvIU9RF1bcrT+fC2I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "llama-index-readers-file";
|
pname = "llama-index-readers-file";
|
||||||
version = "0.1.12";
|
version = "0.1.13";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "llama_index_readers_file";
|
pname = "llama_index_readers_file";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-YGXL+AsPtdGJVYuLkK273JKsuGFH/KGS2I/MJwStKvM=";
|
hash = "sha256-gw8G7Hs0Q3/Du18mjSNcXHZAKWrbFI2Pkid9zrfwhG0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "llama-index-vector-stores-google";
|
pname = "llama-index-vector-stores-google";
|
||||||
version = "0.1.4";
|
version = "0.1.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "llama_index_vector_stores_google";
|
pname = "llama_index_vector_stores_google";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-5HjbymV7wdcu/C+ndWCxj3j10QIgVqUaSaZ4cRMJ46U=";
|
hash = "sha256-E6RNf2DzktoZW89P0VKfmeZ5SEslGkyFLRxVtnsQOYc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "llama-index-vector-stores-postgres";
|
pname = "llama-index-vector-stores-postgres";
|
||||||
version = "0.1.3";
|
version = "0.1.4.post1";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "llama_index_vector_stores_postgres";
|
pname = "llama_index_vector_stores_postgres";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-vWqCcda9dDPLceoOEgMivpBmkLbKs/poEjzCk/q4HwI=";
|
hash = "sha256-E75oSh9MH8aX00y//jhNbehqYdIm5HfEjb5Swn7J/cQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRemoveDeps = [
|
pythonRemoveDeps = [
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "llama-index-vector-stores-qdrant";
|
pname = "llama-index-vector-stores-qdrant";
|
||||||
version = "0.1.4";
|
version = "0.1.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "llama_index_vector_stores_qdrant";
|
pname = "llama_index_vector_stores_qdrant";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-UIiEL7ZUcGQusyhs9cFsPOZ8qxH7ouoCnQMemlho0lA=";
|
hash = "sha256-Q4+ehywPz+jrA36AtU9yiicRr2nU6BCO6Y42j0SKPdI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
|
@ -161,7 +161,7 @@ rec {
|
|||||||
|
|
||||||
mypy-boto3-codeartifact = buildMypyBoto3Package "codeartifact" "1.34.68" "sha256-Ey0cmx0OxN1/VXIyvn0EOBP9qYIuc/XyFVZniHLaNEY=";
|
mypy-boto3-codeartifact = buildMypyBoto3Package "codeartifact" "1.34.68" "sha256-Ey0cmx0OxN1/VXIyvn0EOBP9qYIuc/XyFVZniHLaNEY=";
|
||||||
|
|
||||||
mypy-boto3-codebuild = buildMypyBoto3Package "codebuild" "1.34.70" "sha256-lv69lhMKJHRnooVrmGinfDEi7eVEe7O12GNNo5uZQQc=";
|
mypy-boto3-codebuild = buildMypyBoto3Package "codebuild" "1.34.74" "sha256-A8SRNosqzXQab2J9gnYUWNkIdju8QqX44GJnFSNE4DQ=";
|
||||||
|
|
||||||
mypy-boto3-codecatalyst = buildMypyBoto3Package "codecatalyst" "1.34.73" "sha256-jQ/DIoWXQWo1oVWi4Gn88cxr78QCs45EVtgfc6fZkFk=";
|
mypy-boto3-codecatalyst = buildMypyBoto3Package "codecatalyst" "1.34.73" "sha256-jQ/DIoWXQWo1oVWi4Gn88cxr78QCs45EVtgfc6fZkFk=";
|
||||||
|
|
||||||
@ -347,7 +347,7 @@ rec {
|
|||||||
|
|
||||||
mypy-boto3-inspector2 = buildMypyBoto3Package "inspector2" "1.34.29" "sha256-ZMdNVgKXQnEHyK4tV/XegvFX7xdk5A1AiSfpTKWCtcY=";
|
mypy-boto3-inspector2 = buildMypyBoto3Package "inspector2" "1.34.29" "sha256-ZMdNVgKXQnEHyK4tV/XegvFX7xdk5A1AiSfpTKWCtcY=";
|
||||||
|
|
||||||
mypy-boto3-internetmonitor = buildMypyBoto3Package "internetmonitor" "1.34.48" "sha256-tJ5Hu8ojUahG1YbNHgwDjYWqbSPCZEUyYM/dOObmArg=";
|
mypy-boto3-internetmonitor = buildMypyBoto3Package "internetmonitor" "1.34.74" "sha256-VFIeJqQHHvbB+mLyzxHpZUvgGS5dJJen4AAJAMJTDqE=";
|
||||||
|
|
||||||
mypy-boto3-iot = buildMypyBoto3Package "iot" "1.34.52" "sha256-YWGotOPKljY4B0JL1I+axk4MJZIk84rVxoZu9tzBGss=";
|
mypy-boto3-iot = buildMypyBoto3Package "iot" "1.34.52" "sha256-YWGotOPKljY4B0JL1I+axk4MJZIk84rVxoZu9tzBGss=";
|
||||||
|
|
||||||
@ -381,7 +381,7 @@ rec {
|
|||||||
|
|
||||||
mypy-boto3-iottwinmaker = buildMypyBoto3Package "iottwinmaker" "1.34.0" "sha256-K5LEh8wdXvftxGstThSBN73K+1FUVlE40JxvjWv6GMA=";
|
mypy-boto3-iottwinmaker = buildMypyBoto3Package "iottwinmaker" "1.34.0" "sha256-K5LEh8wdXvftxGstThSBN73K+1FUVlE40JxvjWv6GMA=";
|
||||||
|
|
||||||
mypy-boto3-iotwireless = buildMypyBoto3Package "iotwireless" "1.34.0" "sha256-g2Ab6AQ0fvmEuSqAHlvAPe3TYSz/Nai1U8srjT0QWHw=";
|
mypy-boto3-iotwireless = buildMypyBoto3Package "iotwireless" "1.34.74" "sha256-57ZO7LlQ9/itiynqSjXu7SJrNLNaFo5WCJBqSXEYeLs=";
|
||||||
|
|
||||||
mypy-boto3-ivs = buildMypyBoto3Package "ivs" "1.34.45" "sha256-Ilrtk6ZF1p3GNuZrtiEiNXi3bHI3MYNr6bDpJ8sf4Fg=";
|
mypy-boto3-ivs = buildMypyBoto3Package "ivs" "1.34.45" "sha256-Ilrtk6ZF1p3GNuZrtiEiNXi3bHI3MYNr6bDpJ8sf4Fg=";
|
||||||
|
|
||||||
@ -459,7 +459,7 @@ rec {
|
|||||||
|
|
||||||
mypy-boto3-managedblockchain-query = buildMypyBoto3Package "managedblockchain-query" "1.34.67" "sha256-c2BoAKpgurKaNOTkl3cqc3X1CiaQVfQL5kvQV3/WLww=";
|
mypy-boto3-managedblockchain-query = buildMypyBoto3Package "managedblockchain-query" "1.34.67" "sha256-c2BoAKpgurKaNOTkl3cqc3X1CiaQVfQL5kvQV3/WLww=";
|
||||||
|
|
||||||
mypy-boto3-marketplace-catalog = buildMypyBoto3Package "marketplace-catalog" "1.34.41" "sha256-SZqNZO/36iGuf0jqNIZrbD1BOE7p6xMWhs5Y5VkUl8c=";
|
mypy-boto3-marketplace-catalog = buildMypyBoto3Package "marketplace-catalog" "1.34.74" "sha256-+ehJMgzEt0R0sV1IL4/eEEltEIcFDqr4GzeTraabW90=";
|
||||||
|
|
||||||
mypy-boto3-marketplace-entitlement = buildMypyBoto3Package "marketplace-entitlement" "1.34.0" "sha256-yGaeDZLEmp/Nap++wI6GgQvVW3HxQFcM+ipk7RAuG4g=";
|
mypy-boto3-marketplace-entitlement = buildMypyBoto3Package "marketplace-entitlement" "1.34.0" "sha256-yGaeDZLEmp/Nap++wI6GgQvVW3HxQFcM+ipk7RAuG4g=";
|
||||||
|
|
||||||
@ -625,7 +625,7 @@ rec {
|
|||||||
|
|
||||||
mypy-boto3-s3outposts = buildMypyBoto3Package "s3outposts" "1.34.0" "sha256-xLuGP9Fe0S7zRimt1AKd9KOrytmNd/GTRg5OVi5Xpos=";
|
mypy-boto3-s3outposts = buildMypyBoto3Package "s3outposts" "1.34.0" "sha256-xLuGP9Fe0S7zRimt1AKd9KOrytmNd/GTRg5OVi5Xpos=";
|
||||||
|
|
||||||
mypy-boto3-sagemaker = buildMypyBoto3Package "sagemaker" "1.34.70" "sha256-WON2j0ZQ9x3qq1mOOzMvT8jJSuJipDHDp4IxsB88GCg=";
|
mypy-boto3-sagemaker = buildMypyBoto3Package "sagemaker" "1.34.74" "sha256-gTSksOsEH4IRLqw+AZ/CNLO28Ir18oy7iP2h6a38rmE=";
|
||||||
|
|
||||||
mypy-boto3-sagemaker-a2i-runtime = buildMypyBoto3Package "sagemaker-a2i-runtime" "1.34.0" "sha256-jMZ3aWKQPhNec4A/02S1waQi6Mx9JVdENc3kblhsKjA=";
|
mypy-boto3-sagemaker-a2i-runtime = buildMypyBoto3Package "sagemaker-a2i-runtime" "1.34.0" "sha256-jMZ3aWKQPhNec4A/02S1waQi6Mx9JVdENc3kblhsKjA=";
|
||||||
|
|
||||||
|
@ -14,14 +14,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "phonopy";
|
pname = "phonopy";
|
||||||
version = "2.22.0";
|
version = "2.22.1";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-9opygqCRxKGNQo52cS7BiUYdmknIk9ygubPgpylcy8o=";
|
hash = "sha256-nux6/1z1xBr+4+fWrR/oOc+zVOI9j60p/SHHAPZ+hWI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -9,14 +9,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "plaid-python";
|
pname = "plaid-python";
|
||||||
version = "19.0.0";
|
version = "20.0.1";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-mwWE5AZjqoUkPzyvuARotcRU2mKnqkoBh6priXLzE/I=";
|
hash = "sha256-TSydetm05gELugfRr6IGEfSrDhCOHzm73BTqbGkAXpk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
60
pkgs/development/python-modules/pulsar/default.nix
Normal file
60
pkgs/development/python-modules/pulsar/default.nix
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
, cmake
|
||||||
|
, pkg-config
|
||||||
|
, libpulsar
|
||||||
|
, pybind11
|
||||||
|
, certifi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pulsar";
|
||||||
|
version = "3.4.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "apache";
|
||||||
|
repo = "pulsar-client-python";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-WcD88s8V4AT/juW0qmYHdtYzrS3hWeom/4r8TETlmFE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libpulsar
|
||||||
|
pybind11
|
||||||
|
];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
make -j$NIX_BUILD_CORES
|
||||||
|
make install
|
||||||
|
cd ..
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
certifi
|
||||||
|
];
|
||||||
|
|
||||||
|
# Requires to setup a cluster
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pulsar"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Apache Pulsar Python client library";
|
||||||
|
homepage = "https://pulsar.apache.org/docs/next/client-libraries-python/";
|
||||||
|
changelog = "https://github.com/apache/pulsar-client-python/releases/tag/v${version}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ gaelreyrol ];
|
||||||
|
};
|
||||||
|
}
|
@ -24,12 +24,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "py3status";
|
pname = "py3status";
|
||||||
version = "3.56";
|
version = "3.57";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-dHc5t8QO4wtwFlLkiaSu5Ern/MsxNHZMd5aeqWdKwNo=";
|
hash = "sha256-6l0l7sbPspdF/TYTOKaWsgOdpfDUs0PyFVKGUBNPwIA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyrevolve";
|
pname = "pyrevolve";
|
||||||
version = "2.2.3";
|
version = "2.2.4";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
|||||||
owner = "devitocodes";
|
owner = "devitocodes";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-z1G8DXG06Capd87x02zqrtYyBrX4xmJP94t4bgaR2PE=";
|
hash = "sha256-fcIq/zuKO3W7K9N2E4f2Q6ZVcssZwN/n8o9cCOYmr3E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -11,14 +11,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytest-relaxed";
|
pname = "pytest-relaxed";
|
||||||
version = "2.0.1";
|
version = "2.0.2";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-U6c3Lj/qpSdAm7QDU/gTxZt2Dl2L1H5vb88YfF2W3Qw=";
|
hash = "sha256-lW6gKOww27+2gN2Oe0p/uPgKI5WV6Ius4Bi/LA1xgkg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "qtawesome";
|
pname = "qtawesome";
|
||||||
version = "1.3.0";
|
version = "1.3.1";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
owner = "spyder-ide";
|
owner = "spyder-ide";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-CencHIgkiXDmSEasc1EgalhT8RXfyXKx0wy09NDsj54=";
|
hash = "sha256-dF77vkrEl671fQvsHAX+JY9OmLA29kgAVswY2b3UyTg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
|
|
||||||
# ROCm dependencies
|
# ROCm dependencies
|
||||||
rocmSupport ? config.rocmSupport,
|
rocmSupport ? config.rocmSupport,
|
||||||
rocmPackages,
|
rocmPackages_5,
|
||||||
gpuTargets ? [ ]
|
gpuTargets ? [ ]
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -60,6 +60,8 @@ let
|
|||||||
inherit (lib) attrsets lists strings trivial;
|
inherit (lib) attrsets lists strings trivial;
|
||||||
inherit (cudaPackages) cudaFlags cudnn nccl;
|
inherit (cudaPackages) cudaFlags cudnn nccl;
|
||||||
|
|
||||||
|
rocmPackages = rocmPackages_5;
|
||||||
|
|
||||||
setBool = v: if v then "1" else "0";
|
setBool = v: if v then "1" else "0";
|
||||||
|
|
||||||
# https://github.com/pytorch/pytorch/blob/v2.0.1/torch/utils/cpp_extension.py#L1744
|
# https://github.com/pytorch/pytorch/blob/v2.0.1/torch/utils/cpp_extension.py#L1744
|
||||||
|
@ -24,14 +24,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tox";
|
pname = "tox";
|
||||||
version = "4.14.1";
|
version = "4.14.2";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tox-dev";
|
owner = "tox-dev";
|
||||||
repo = "tox";
|
repo = "tox";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-b+HOv0xMIE3k0u39YAAyVbiJPnOAamATZeZYTBUyAZM=";
|
hash = "sha256-+ed47GK76Wn8PwXsd0qo1xYWJTcZ5wNXnFEEQEZ7CMM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -12,16 +12,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "biome";
|
pname = "biome";
|
||||||
version = "1.6.1";
|
version = "1.6.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "biomejs";
|
owner = "biomejs";
|
||||||
repo = "biome";
|
repo = "biome";
|
||||||
rev = "cli/v${version}";
|
rev = "cli/v${version}";
|
||||||
hash = "sha256-JApGz2vDGU1IFmhyaT1noCRIP0YoucVvHq395/CJ1zA=";
|
hash = "sha256-DooUOp+fr5oOrx04SLlTGro8xc2LieVPNtdvDyTLL/s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-4m2xtj3FHd8DTS3BeUMVoo8Pzjkol96B6tvNyzqPhEo=";
|
cargoHash = "sha256-zMMfLDhiqG8Ahe+7PFjpOtwaBXbKkLDIIoHS329/4uQ=";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
|
|
||||||
cargoBuildFlags = [ "-p=biome_cli" ];
|
cargoBuildFlags = [ "-p=biome_cli" ];
|
||||||
cargoTestFlags = cargoBuildFlags ++
|
cargoTestFlags = cargoBuildFlags ++
|
||||||
# skip a broken test from v1.6.1 release
|
# skip a broken test from v1.6.3 release
|
||||||
# this will be removed on the next version
|
# this will be removed on the next version
|
||||||
[ "-- --skip=diagnostics::test::termination_diagnostic_size" ];
|
[ "-- --skip=diagnostics::test::termination_diagnostic_size" ];
|
||||||
|
|
||||||
|
@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "clickhouse-backup";
|
pname = "clickhouse-backup";
|
||||||
version = "2.4.34";
|
version = "2.4.35";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "AlexAkulov";
|
owner = "AlexAkulov";
|
||||||
repo = "clickhouse-backup";
|
repo = "clickhouse-backup";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-aRNPkgkWmVCzHaOHzIAPdZyofqIWX5w5U+bsO1MrKow=";
|
hash = "sha256-SE4+NUH1W0YPjx59yjOun1tLbn6Je2nG2wcfb8+YSfw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-5da3Tt4rKbzFPwYVhkkxCY/YpJePdE7WLDlTtPI8w1Q=";
|
vendorHash = "sha256-5da3Tt4rKbzFPwYVhkkxCY/YpJePdE7WLDlTtPI8w1Q=";
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
}:
|
}:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "devbox";
|
pname = "devbox";
|
||||||
version = "0.10.1";
|
version = "0.10.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jetpack-io";
|
owner = "jetpack-io";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-iKWOGp5Clk+YFXHv/5k+7DZMA9TQzyIQoTlQs4IMbu4=";
|
hash = "sha256-mZwvNNwB+btDbjVUQNucDXsBATGfjCvV1odAgkFkiSc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "micronaut";
|
pname = "micronaut";
|
||||||
version = "4.3.6";
|
version = "4.3.7";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://github.com/micronaut-projects/micronaut-starter/releases/download/v${version}/micronaut-cli-${version}.zip";
|
url = "https://github.com/micronaut-projects/micronaut-starter/releases/download/v${version}/micronaut-cli-${version}.zip";
|
||||||
sha256 = "sha256-iwV+yo9NkQr78ZMFiUAnFXPdK4ItB4o+75HNFpd7wpU=";
|
sha256 = "sha256-TP7Ccv/Krc5l35AxyrkRmeRMSgQP9Q3BpNiHxlqLD4I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "opengrok";
|
pname = "opengrok";
|
||||||
version = "1.13.6";
|
version = "1.13.7";
|
||||||
|
|
||||||
# binary distribution
|
# binary distribution
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz";
|
url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz";
|
||||||
hash = "sha256-eCTqBdY2mALEo7dPQ7fDNaO2RcbbKIYSi9Y6nfRV1kc=";
|
hash = "sha256-vGzwXs4i9NiIz5M4JfoweJdpP5vbPKCdeUlE5xueYc4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "upbound";
|
pname = "upbound";
|
||||||
version = "0.24.2";
|
version = "0.26.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = "up";
|
repo = "up";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-MDpe5CM5pgbrdVozh1yXiALLd8BkhrtNjL/su2JubcE=";
|
sha256 = "sha256-xlPBz0FVG/bAUGH/RlguVG5rDcKMty7rX8Y+1VBbEpI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-jHVwI5fQbS/FhRptRXtNezG1djaZKHJgpPJfuEH/zO0=";
|
vendorHash = "sha256-1NhcP/iEfEMtPSBP6wbTKi/fznoJ8HjaH88BPzVnf7w=";
|
||||||
|
|
||||||
subPackages = [ "cmd/docker-credential-up" "cmd/up" ];
|
subPackages = [ "cmd/docker-credential-up" "cmd/up" ];
|
||||||
|
|
||||||
|
@ -20,11 +20,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "vintagestory";
|
pname = "vintagestory";
|
||||||
version = "1.19.4";
|
version = "1.19.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://cdn.vintagestory.at/gamefiles/stable/vs_client_linux-x64_${version}.tar.gz";
|
url = "https://cdn.vintagestory.at/gamefiles/stable/vs_client_linux-x64_${version}.tar.gz";
|
||||||
hash = "sha256-A5NIWy902a0W/Y/sJL+qPrEJwCiU/TNIm7G3BtU6gzM=";
|
hash = "sha256-noweIb+lZhme1kEjU2+tIc0E99iShNngxEEyDMKJcpk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,8 +13,10 @@
|
|||||||
libsamplerate,
|
libsamplerate,
|
||||||
cdrdao,
|
cdrdao,
|
||||||
cdrtools,
|
cdrtools,
|
||||||
|
cdparanoia,
|
||||||
dvdplusrwtools,
|
dvdplusrwtools,
|
||||||
libburn,
|
libburn,
|
||||||
|
libdvdcss,
|
||||||
normalize,
|
normalize,
|
||||||
sox,
|
sox,
|
||||||
transcode,
|
transcode,
|
||||||
@ -38,7 +40,7 @@ mkKdeDerivation {
|
|||||||
];
|
];
|
||||||
|
|
||||||
qtWrapperArgs = [
|
qtWrapperArgs = [
|
||||||
"--prefix PATH ':' ${lib.makeBinPath [
|
"--prefix PATH : ${lib.makeBinPath [
|
||||||
cdrdao
|
cdrdao
|
||||||
cdrtools
|
cdrtools
|
||||||
dvdplusrwtools
|
dvdplusrwtools
|
||||||
@ -49,6 +51,10 @@ mkKdeDerivation {
|
|||||||
vcdimager
|
vcdimager
|
||||||
flac
|
flac
|
||||||
]}"
|
]}"
|
||||||
|
|
||||||
|
# FIXME: this should really be done with patchelf --add-rpath, but it breaks the binary somehow
|
||||||
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ cdparanoia libdvdcss ]}"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta.mainProgram = "k3b";
|
meta.mainProgram = "k3b";
|
||||||
}
|
}
|
||||||
|
@ -6,5 +6,10 @@ mkKdeDerivation {
|
|||||||
pname = "partitionmanager";
|
pname = "partitionmanager";
|
||||||
|
|
||||||
propagatedUserEnvPkgs = [kpmcore];
|
propagatedUserEnvPkgs = [kpmcore];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
inherit kpmcore;
|
||||||
|
};
|
||||||
|
|
||||||
meta.mainProgram = "partitionmanager";
|
meta.mainProgram = "partitionmanager";
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchurl, undmg }:
|
{ stdenv, lib, fetchurl, undmg, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
version = "3.4.1";
|
version = "3.4.1";
|
||||||
@ -12,9 +12,13 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
|
|
||||||
sourceRoot = "GrandPerspective.app";
|
sourceRoot = "GrandPerspective.app";
|
||||||
buildInputs = [ undmg ];
|
buildInputs = [ undmg ];
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
# Create a trampoline script in $out/bin/ because a symlink doesn’t work for
|
||||||
|
# this app.
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out/Applications/GrandPerspective.app";
|
mkdir -p "$out/Applications/GrandPerspective.app" "$out/bin"
|
||||||
cp -R . "$out/Applications/GrandPerspective.app";
|
cp -R . "$out/Applications/GrandPerspective.app"
|
||||||
|
makeWrapper "$out/Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective" "$out/bin/grandperspective"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
@ -25,6 +29,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to
|
space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to
|
||||||
the file's size. Files in the same folder appear together, but their placement is otherwise arbitrary.
|
the file's size. Files in the same folder appear together, but their placement is otherwise arbitrary.
|
||||||
'';
|
'';
|
||||||
|
mainProgram = "grandperspective";
|
||||||
homepage = "https://grandperspectiv.sourceforge.net";
|
homepage = "https://grandperspectiv.sourceforge.net";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||||
|
@ -5,16 +5,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "weaviate";
|
pname = "weaviate";
|
||||||
version = "1.24.4";
|
version = "1.24.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "weaviate";
|
owner = "weaviate";
|
||||||
repo = "weaviate";
|
repo = "weaviate";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-kovhusZ/4/wLr8FeBY6jBPdD1V718yI41fTjbtjGleM=";
|
hash = "sha256-1IwLHSQxCSGLnva37JNIfaSzVBRAPNw/RYvx6ksFEFU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-0CPdBrEjBJiX/Fv0DhFaZqkixuEPW2Pttl5wCNxieYc=";
|
vendorHash = "sha256-DMzwIxtF267C2OLyVdZ6CrCz44sy6ZeKL2qh8AkhS2I=";
|
||||||
|
|
||||||
subPackages = [ "cmd/weaviate-server" ];
|
subPackages = [ "cmd/weaviate-server" ];
|
||||||
|
|
||||||
|
@ -10,9 +10,7 @@ let
|
|||||||
concatMapStrings
|
concatMapStrings
|
||||||
concatMapStringsSep
|
concatMapStringsSep
|
||||||
concatStrings
|
concatStrings
|
||||||
filter
|
|
||||||
findFirst
|
findFirst
|
||||||
head
|
|
||||||
isDerivation
|
isDerivation
|
||||||
length
|
length
|
||||||
concatMap
|
concatMap
|
||||||
@ -306,10 +304,6 @@ let
|
|||||||
str
|
str
|
||||||
];
|
];
|
||||||
downloadPage = str;
|
downloadPage = str;
|
||||||
repository = union [
|
|
||||||
(listOf str)
|
|
||||||
str
|
|
||||||
];
|
|
||||||
changelog = union [
|
changelog = union [
|
||||||
(listOf str)
|
(listOf str)
|
||||||
str
|
str
|
||||||
@ -446,18 +440,6 @@ let
|
|||||||
# -----
|
# -----
|
||||||
else { valid = "yes"; });
|
else { valid = "yes"; });
|
||||||
|
|
||||||
getRepository = let
|
|
||||||
getSrcs = attrs:
|
|
||||||
if attrs ? src
|
|
||||||
then
|
|
||||||
[ attrs.src ]
|
|
||||||
else
|
|
||||||
filter (src: src ? meta.homepage) attrs.srcs;
|
|
||||||
getHomePages = map (src: src.meta.homepage);
|
|
||||||
unlist = list:
|
|
||||||
if length list == 1 then head list
|
|
||||||
else list;
|
|
||||||
in attrs: unlist (getHomePages (getSrcs attrs));
|
|
||||||
|
|
||||||
# The meta attribute is passed in the resulting attribute set,
|
# The meta attribute is passed in the resulting attribute set,
|
||||||
# but it's not part of the actual derivation, i.e., it's not
|
# but it's not part of the actual derivation, i.e., it's not
|
||||||
@ -471,14 +453,7 @@ let
|
|||||||
outputs = attrs.outputs or [ "out" ];
|
outputs = attrs.outputs or [ "out" ];
|
||||||
hasOutput = out: builtins.elem out outputs;
|
hasOutput = out: builtins.elem out outputs;
|
||||||
in
|
in
|
||||||
optionalAttrs (attrs ? src.meta.homepage || attrs ? srcs && isList attrs.srcs && any (src: src ? meta.homepage) attrs.srcs) {
|
{
|
||||||
# should point to an http-browsable source tree, if available.
|
|
||||||
# fetchers like fetchFromGitHub set it automatically.
|
|
||||||
# this could be handled a lot easier if we nulled it instead
|
|
||||||
# of having it be undefined, but that wouldn't match the
|
|
||||||
# other attributes.
|
|
||||||
repository = getRepository attrs;
|
|
||||||
} // {
|
|
||||||
# `name` derivation attribute includes cross-compilation cruft,
|
# `name` derivation attribute includes cross-compilation cruft,
|
||||||
# is under assert, and is sanitized.
|
# is under assert, and is sanitized.
|
||||||
# Let's have a clean always accessible version here.
|
# Let's have a clean always accessible version here.
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user