mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge master into staging-next
This commit is contained in:
commit
4f5d1a2355
@ -6,7 +6,7 @@ This setup hook attempts to use [the `just` command runner](https://just.systems
|
||||
|
||||
## `buildPhase` {#just-hook-buildPhase}
|
||||
|
||||
This phase attempts to invoke `just` with [the default recipe](https://just.systems/man/en/chapter_23.html).
|
||||
This phase attempts to invoke `just` with [the default recipe](https://just.systems/man/en/the-default-recipe.html).
|
||||
|
||||
[]{#just-hook-dontUseJustBuild} This behavior can be disabled by setting `dontUseJustBuild` to `true`.
|
||||
|
||||
|
@ -3,6 +3,12 @@ let
|
||||
TCPPorts = [21115 21116 21117 21118 21119];
|
||||
UDPPorts = [21116];
|
||||
in {
|
||||
imports = [
|
||||
(lib.mkRemovedOptionModule [ "services" "rustdesk-server" "relayIP" ] "This option has been replaced by services.rustdesk-server.signal.relayHosts")
|
||||
(lib.mkRenamedOptionModule [ "services" "rustdesk-server" "extraRelayArgs" ] [ "services" "rustdesk-server" "relay" "extraArgs" ])
|
||||
(lib.mkRenamedOptionModule [ "services" "rustdesk-server" "extraSignalArgs" ] [ "services" "rustdesk-server" "signal" "extraArgs" ])
|
||||
];
|
||||
|
||||
options.services.rustdesk-server = with lib; with types; {
|
||||
enable = mkEnableOption "RustDesk, a remote access and remote control software, allowing maintenance of computers and other devices";
|
||||
|
||||
@ -18,30 +24,53 @@ in {
|
||||
'';
|
||||
};
|
||||
|
||||
relayIP = mkOption {
|
||||
type = str;
|
||||
description = ''
|
||||
The public facing IP of the RustDesk relay.
|
||||
'';
|
||||
signal = {
|
||||
enable = mkOption {
|
||||
type = bool;
|
||||
default = true;
|
||||
description = ''
|
||||
Whether to enable the RustDesk signal server.
|
||||
'';
|
||||
};
|
||||
|
||||
relayHosts = mkOption {
|
||||
type = listOf str;
|
||||
default = [];
|
||||
# reference: https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/relay/
|
||||
description = ''
|
||||
The relay server IP addresses or DNS names of the RustDesk relay.
|
||||
'';
|
||||
};
|
||||
|
||||
extraArgs = mkOption {
|
||||
type = listOf str;
|
||||
default = [];
|
||||
example = [ "-k" "_" ];
|
||||
description = ''
|
||||
A list of extra command line arguments to pass to the `hbbs` process.
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
extraSignalArgs = mkOption {
|
||||
type = listOf str;
|
||||
default = [];
|
||||
example = [ "-k" "_" ];
|
||||
description = ''
|
||||
A list of extra command line arguments to pass to the `hbbs` process.
|
||||
'';
|
||||
relay = {
|
||||
enable = mkOption {
|
||||
type = bool;
|
||||
default = true;
|
||||
description = ''
|
||||
Whether to enable the RustDesk relay server.
|
||||
'';
|
||||
};
|
||||
extraArgs = mkOption {
|
||||
type = listOf str;
|
||||
default = [];
|
||||
example = [ "-k" "_" ];
|
||||
description = ''
|
||||
A list of extra command line arguments to pass to the `hbbr` process.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
extraRelayArgs = mkOption {
|
||||
type = listOf str;
|
||||
default = [];
|
||||
example = [ "-k" "_" ];
|
||||
description = ''
|
||||
A list of extra command line arguments to pass to the `hbbr` process.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = let
|
||||
@ -96,13 +125,17 @@ in {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
};
|
||||
|
||||
systemd.services.rustdesk-signal = lib.mkMerge [ serviceDefaults {
|
||||
serviceConfig.ExecStart = "${cfg.package}/bin/hbbs -r ${cfg.relayIP} ${lib.escapeShellArgs cfg.extraSignalArgs}";
|
||||
} ];
|
||||
systemd.services.rustdesk-signal =
|
||||
let
|
||||
relayArg = builtins.concatStringsSep ":" cfg.signal.relayHosts;
|
||||
in
|
||||
lib.mkIf cfg.signal.enable (lib.mkMerge [ serviceDefaults {
|
||||
serviceConfig.ExecStart = "${cfg.package}/bin/hbbs --relay-servers ${relayArg} ${lib.escapeShellArgs cfg.signal.extraArgs}";
|
||||
} ]);
|
||||
|
||||
systemd.services.rustdesk-relay = lib.mkMerge [ serviceDefaults {
|
||||
serviceConfig.ExecStart = "${cfg.package}/bin/hbbr ${lib.escapeShellArgs cfg.extraRelayArgs}";
|
||||
} ];
|
||||
systemd.services.rustdesk-relay = lib.mkIf cfg.relay.enable (lib.mkMerge [ serviceDefaults {
|
||||
serviceConfig.ExecStart = "${cfg.package}/bin/hbbr ${lib.escapeShellArgs cfg.relay.extraArgs}";
|
||||
} ]);
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ ppom ];
|
||||
|
@ -160,6 +160,8 @@ in {
|
||||
}
|
||||
});
|
||||
'';
|
||||
# dbus/polkit with DynamicUser is broken with the default implementation
|
||||
services.dbus.implementation = "broker";
|
||||
|
||||
# We don't use the existing gobgp NixOS module and package, because the gobgp
|
||||
# version might not be compatible with fastnetmon. Also, the service name
|
||||
|
@ -1,22 +1,39 @@
|
||||
{ lib, appimageTools, runCommand, curl, gnugrep, cacert }:
|
||||
{
|
||||
lib,
|
||||
appimageTools,
|
||||
runCommand,
|
||||
curl,
|
||||
gnugrep,
|
||||
cacert,
|
||||
}:
|
||||
|
||||
appimageTools.wrapType1 rec {
|
||||
pname = "pureref";
|
||||
version = "2.0.3";
|
||||
|
||||
src = runCommand "PureRef-${version}_x64.Appimage" {
|
||||
nativeBuildInputs = [ curl gnugrep cacert ];
|
||||
outputHash = "sha256-0iR1cP2sZvWWqKwRAwq6L/bmIBSYHKrlI8u8V2hANfM=";
|
||||
} ''
|
||||
key="$(curl "https://www.pureref.com/download.php" --silent | grep '%3D%3D' | cut -d '"' -f2)"
|
||||
curl -L "https://www.pureref.com/files/build.php?build=LINUX64.Appimage&version=${version}&downloadKey=$key" --output $out
|
||||
'';
|
||||
src =
|
||||
runCommand "PureRef-${version}_x64.Appimage"
|
||||
{
|
||||
nativeBuildInputs = [
|
||||
curl
|
||||
gnugrep
|
||||
cacert
|
||||
];
|
||||
outputHash = "sha256-0iR1cP2sZvWWqKwRAwq6L/bmIBSYHKrlI8u8V2hANfM=";
|
||||
}
|
||||
''
|
||||
key="$(curl -A 'nixpkgs/Please contact maintainer if there is an issue' "https://www.pureref.com/download.php" --silent | grep '%3D%3D' | cut -d '"' -f2)"
|
||||
curl -L "https://www.pureref.com/files/build.php?build=LINUX64.Appimage&version=${version}&downloadKey=$key" --output $out
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Reference Image Viewer";
|
||||
homepage = "https://www.pureref.com";
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ elnudev ];
|
||||
maintainers = with maintainers; [
|
||||
elnudev
|
||||
husjon
|
||||
];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
||||
};
|
||||
|
@ -252,14 +252,6 @@ let
|
||||
# We also need enable_widevine_cdm_component to be false. Unfortunately it isn't exposed as gn
|
||||
# flag (declare_args) so we simply hardcode it to false.
|
||||
./patches/widevine-disable-auto-download-allow-bundle.patch
|
||||
] ++ lib.optionals (versionRange "125" "126") [
|
||||
# Fix building M125 with ninja 1.12. Not needed for M126+.
|
||||
# https://issues.chromium.org/issues/336911498
|
||||
# https://chromium-review.googlesource.com/c/chromium/src/+/5487538
|
||||
(githubPatch {
|
||||
commit = "a976cb05b4024b7a6452d1541378d718cdfe33e6";
|
||||
hash = "sha256-K2PSeJAvhGH2/Yp63/4mJ85NyqXqDDkMWY+ptrpgmOI=";
|
||||
})
|
||||
] ++ lib.optionals (versionRange "127" "128") [
|
||||
# Fix missing chrome/browser/ui/webui_name_variants.h dependency
|
||||
# and ninja 1.12 compat in M127.
|
||||
@ -293,21 +285,14 @@ let
|
||||
# Chromium reads initial_preferences from its own executable directory
|
||||
# This patch modifies it to read /etc/chromium/initial_preferences
|
||||
./patches/chromium-initial-prefs.patch
|
||||
] ++ lib.optionals (versionRange "120" "126") [
|
||||
# Partial revert to build M120+ with LLVM 17:
|
||||
# https://github.com/chromium/chromium/commit/02b6456643700771597c00741937e22068b0f956
|
||||
# https://github.com/chromium/chromium/commit/69736ffe943ff996d4a88d15eb30103a8c854e29
|
||||
./patches/chromium-120-llvm-17.patch
|
||||
] ++ lib.optionals (chromiumVersionAtLeast "126") [
|
||||
# Rebased variant of patch right above to build M126+ with LLVM 17.
|
||||
# Rebased variant of patch to build M126+ with LLVM 17.
|
||||
# staging-next will bump LLVM to 18, so we will be able to drop this soon.
|
||||
./patches/chromium-126-llvm-17.patch
|
||||
] ++ lib.optionals (versionRange "121" "126") [
|
||||
# M121 is the first version to require the new rust toolchain.
|
||||
] ++ lib.optionals (versionRange "126" "129") [
|
||||
# Partial revert of https://github.com/chromium/chromium/commit/3687976b0c6d36cf4157419a24a39f6770098d61
|
||||
# allowing us to use our rustc and our clang.
|
||||
./patches/chromium-121-rust.patch
|
||||
] ++ lib.optionals (versionRange "126" "129") [
|
||||
# Rebased variant of patch right above to build M126+ with our rust and our clang.
|
||||
./patches/chromium-126-rust.patch
|
||||
] ++ lib.optionals (chromiumVersionAtLeast "129") [
|
||||
|
@ -1,29 +0,0 @@
|
||||
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
|
||||
index de1cd6e..bb5700b 100644
|
||||
--- a/build/config/compiler/BUILD.gn
|
||||
+++ b/build/config/compiler/BUILD.gn
|
||||
@@ -616,24 +616,6 @@ config("compiler") {
|
||||
}
|
||||
}
|
||||
|
||||
- # TODO(crbug.com/1488374): This causes binary size growth and potentially
|
||||
- # other problems.
|
||||
- # TODO(crbug.com/1491036): This isn't supported by Cronet's mainline llvm version.
|
||||
- if (default_toolchain != "//build/toolchain/cros:target" &&
|
||||
- !llvm_android_mainline) {
|
||||
- cflags += [
|
||||
- "-mllvm",
|
||||
- "-split-threshold-for-reg-with-hint=0",
|
||||
- ]
|
||||
- if (use_thin_lto && is_a_target_toolchain) {
|
||||
- if (is_win) {
|
||||
- ldflags += [ "-mllvm:-split-threshold-for-reg-with-hint=0" ]
|
||||
- } else {
|
||||
- ldflags += [ "-Wl,-mllvm,-split-threshold-for-reg-with-hint=0" ]
|
||||
- }
|
||||
- }
|
||||
- }
|
||||
-
|
||||
# TODO(crbug.com/1235145): Investigate why/if this should be needed.
|
||||
if (is_win) {
|
||||
cflags += [ "/clang:-ffp-contract=off" ]
|
@ -1,19 +0,0 @@
|
||||
--- a/build/config/compiler/BUILD.gn
|
||||
+++ b/build/config/compiler/BUILD.gn
|
||||
@@ -1629,16 +1629,6 @@
|
||||
configs += [ "//build/config/c++:runtime_library" ]
|
||||
}
|
||||
|
||||
- # Rust and C++ both provide intrinsics for LLVM to call for math operations. We
|
||||
- # want to use the C++ intrinsics, not the ones in the Rust compiler_builtins
|
||||
- # library. The Rust symbols are marked as weak, so that they can be replaced by
|
||||
- # the C++ symbols. This config ensures the C++ symbols exist and are strong in
|
||||
- # order to cause that replacement to occur by explicitly linking in clang's
|
||||
- # compiler-rt library.
|
||||
- if (is_clang && toolchain_has_rust) {
|
||||
- configs += [ "//build/config/clang:compiler_builtins" ]
|
||||
- }
|
||||
-
|
||||
# TODO(crbug.com/830987): Come up with a better name for is POSIX + Fuchsia
|
||||
# configuration.
|
||||
if (is_posix || is_fuchsia) {
|
706
pkgs/applications/networking/mullvad/Cargo.lock
generated
706
pkgs/applications/networking/mullvad/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -10,19 +10,19 @@ buildGoModule {
|
||||
src
|
||||
;
|
||||
|
||||
sourceRoot = "${mullvad.src.name}/wireguard/libwg";
|
||||
|
||||
vendorHash = "sha256-gaU3na3sjzM6lvmsGRkuGtV2AHvkl6IgzmyGx3R5ZpM=";
|
||||
modRoot = "wireguard-go-rs/libwg";
|
||||
proxyVendor = true;
|
||||
vendorHash = "sha256-uyAzY1hoCtS7da3wtjxTGx5wBb9c9m749TzihVr94rc=";
|
||||
|
||||
# XXX: hack to make the ar archive go to the correct place
|
||||
# This is necessary because passing `-o ...` to `ldflags` does not work
|
||||
# (this doesn't get communicated everywhere in the chain, apparently, so
|
||||
# `go` complains that it can't find an `a.out` file).
|
||||
GOBIN = "${placeholder "out"}/lib";
|
||||
ldflags = [ "-s" "-w" "-buildmode=c-archive" ];
|
||||
|
||||
patches = [
|
||||
];
|
||||
subPackages = [ "." ];
|
||||
ldflags = [ "-s" "-w" "-buildmode=c-archive" ];
|
||||
tags = [ "daita" ];
|
||||
|
||||
postInstall = ''
|
||||
mv $out/lib/libwg{,.a}
|
||||
@ -30,7 +30,7 @@ buildGoModule {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tiny wrapper around wireguard-go";
|
||||
homepage = "https://github.com/mullvad/mullvadvpn-app/tree/main/wireguard/libwg";
|
||||
homepage = "https://github.com/mullvad/mullvadvpn-app/tree/main/wireguard-go-rs/libwg";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ cole-h ];
|
||||
};
|
||||
|
@ -14,16 +14,27 @@
|
||||
, openvpn-mullvad
|
||||
, shadowsocks-rust
|
||||
, installShellFiles
|
||||
, writeShellScriptBin
|
||||
}:
|
||||
let
|
||||
# NOTE(cole-h): This is necessary because wireguard-go-rs executes go in its build.rs (whose goal
|
||||
# is to produce $OUT_DIR/libwg.a), and a mixed Rust-Go build is non-trivial (read: I didn't want
|
||||
# to attempt it). So, we just fake the "go" binary and do what it would have done: put libwg.a
|
||||
# under $OUT_DIR so that it can be linked against.
|
||||
fakeGoCopyLibwg = writeShellScriptBin "go" ''
|
||||
[ ! -e "$OUT_DIR"/libwg.a ] && cp ${libwg}/lib/libwg.a "$OUT_DIR"/libwg.a
|
||||
'';
|
||||
in
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "mullvad";
|
||||
version = "2024.4";
|
||||
version = "2024.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mullvad";
|
||||
repo = "mullvadvpn-app";
|
||||
rev = version;
|
||||
hash = "sha256-d7poR1NnvqaPutXLFizpQnyipl+38N1Qe2zVXeV7v1Q=";
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-me0e8Cb1dRrnAeiCmsXiclcDMruVLV3t0eGAM3RU1es=";
|
||||
};
|
||||
|
||||
cargoLock = {
|
||||
@ -41,6 +52,7 @@ rustPlatform.buildRustPackage rec {
|
||||
makeWrapper
|
||||
git
|
||||
installShellFiles
|
||||
fakeGoCopyLibwg
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
@ -49,13 +61,6 @@ rustPlatform.buildRustPackage rec {
|
||||
libmnl
|
||||
];
|
||||
|
||||
# talpid-core wants libwg.a in build/lib/{triple}
|
||||
preBuild = ''
|
||||
dest=build/lib/${stdenv.hostPlatform.config}
|
||||
mkdir -p $dest
|
||||
ln -s ${libwg}/lib/libwg.a $dest
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
compdir=$(mktemp -d)
|
||||
for shell in bash zsh fish; do
|
||||
|
169
pkgs/by-name/bi/bisq/package.nix
Normal file
169
pkgs/by-name/bi/bisq/package.nix
Normal file
@ -0,0 +1,169 @@
|
||||
{
|
||||
stdenvNoCC,
|
||||
lib,
|
||||
makeWrapper,
|
||||
runtimeShell,
|
||||
fetchurl,
|
||||
makeDesktopItem,
|
||||
copyDesktopItems,
|
||||
imagemagick,
|
||||
openjdk,
|
||||
dpkg,
|
||||
writeScript,
|
||||
bash,
|
||||
tor,
|
||||
zip,
|
||||
gnupg,
|
||||
}:
|
||||
|
||||
let
|
||||
version = "2.1.2";
|
||||
|
||||
bisq-launcher =
|
||||
args:
|
||||
writeScript "bisq-launcher" ''
|
||||
#! ${runtimeShell}
|
||||
|
||||
# This is just a comment to convince Nix that Tor is a
|
||||
# runtime dependency; The Tor binary is in a *.jar file,
|
||||
# whereas Nix only scans for hashes in uncompressed text.
|
||||
# ${lib.getExe' tor "tor"}
|
||||
|
||||
rm -fR $HOME/.local/share/Bisq2/tor
|
||||
|
||||
exec "${lib.getExe openjdk}" -Djpackage.app-version=@version@ -classpath @out@/lib/app/desktop-app-launcher.jar:@out@/lib/app/* ${args} bisq.desktop_app_launcher.DesktopAppLauncher "$@"
|
||||
'';
|
||||
|
||||
# A given release will be signed by either Alejandro Garcia or Henrik Jannsen
|
||||
# as indicated in the file
|
||||
# https://github.com/bisq-network/bisq2/releases/download/v${version}/signingkey.asc
|
||||
publicKey =
|
||||
{
|
||||
"E222AA02" = fetchurl {
|
||||
url = "https://github.com/bisq-network/bisq2/releases/download/v${version}/E222AA02.asc";
|
||||
sha256 = "sha256-31uBpe/+0QQwFyAsoCt1TUWRm0PHfCFOGOx1M16efoE=";
|
||||
};
|
||||
|
||||
"387C8307" = fetchurl {
|
||||
url = "https://github.com/bisq-network/bisq2/releases/download/v${version}/387C8307.asc";
|
||||
sha256 = "sha256-PrRYZLT0xv82dUscOBgQGKNf6zwzWUDhriAffZbNpmI=";
|
||||
};
|
||||
}
|
||||
."387C8307";
|
||||
in
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
inherit version;
|
||||
|
||||
pname = "bisq2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/bisq-network/bisq2/releases/download/v${version}/Bisq-${version}.deb";
|
||||
sha256 = "0zgv70xlz3c9mrwmiaa1dgagbc441ppk2vrkgard8zjrvk8rg7va";
|
||||
|
||||
# Verify the upstream Debian package prior to extraction.
|
||||
# See https://bisq.wiki/Bisq_2#Installation
|
||||
# This ensures that a successful build of this Nix package requires the Debian
|
||||
# package to pass verification.
|
||||
nativeBuildInputs = [ gnupg ];
|
||||
downloadToTemp = true;
|
||||
|
||||
postFetch = ''
|
||||
pushd $(mktemp -d)
|
||||
export GNUPGHOME=./gnupg
|
||||
mkdir -m 700 -p $GNUPGHOME
|
||||
ln -s $downloadedFile ./Bisq-${version}.deb
|
||||
ln -s ${signature} ./signature.asc
|
||||
gpg --import ${publicKey}
|
||||
gpg --batch --verify signature.asc Bisq-${version}.deb
|
||||
popd
|
||||
mv $downloadedFile $out
|
||||
'';
|
||||
};
|
||||
|
||||
signature = fetchurl {
|
||||
url = "https://github.com/bisq-network/bisq2/releases/download/v${version}/Bisq-${version}.deb.asc";
|
||||
sha256 = "sha256-WZhI8RDmb7nQqpCQJM86vrp8qQNg+mvRVdSPcDqgzxE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
copyDesktopItems
|
||||
dpkg
|
||||
imagemagick
|
||||
makeWrapper
|
||||
zip
|
||||
gnupg
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = "bisq2";
|
||||
exec = "bisq2";
|
||||
icon = "bisq2";
|
||||
desktopName = "Bisq 2";
|
||||
genericName = "Decentralized bitcoin exchange";
|
||||
categories = [
|
||||
"Network"
|
||||
"P2P"
|
||||
];
|
||||
})
|
||||
|
||||
(makeDesktopItem {
|
||||
name = "bisq2-hidpi";
|
||||
exec = "bisq2-hidpi";
|
||||
icon = "bisq2";
|
||||
desktopName = "Bisq 2 (HiDPI)";
|
||||
genericName = "Decentralized bitcoin exchange";
|
||||
categories = [
|
||||
"Network"
|
||||
"P2P"
|
||||
];
|
||||
})
|
||||
];
|
||||
|
||||
unpackPhase = ''
|
||||
dpkg -x $src .
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
# Replace the Tor binary embedded in tor.jar (which is in the zip archive tor.zip)
|
||||
# with the Tor binary from Nixpkgs.
|
||||
|
||||
makeWrapper ${lib.getExe' tor "tor"} ./tor
|
||||
zip tor.zip ./tor
|
||||
zip opt/bisq2/lib/app/tor.jar tor.zip
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/lib $out/bin
|
||||
cp -r opt/bisq2/lib/app $out/lib
|
||||
|
||||
install -D -m 777 ${bisq-launcher ""} $out/bin/bisq2
|
||||
substituteAllInPlace $out/bin/bisq2
|
||||
|
||||
install -D -m 777 ${bisq-launcher "-Dglass.gtk.uiScale=2.0"} $out/bin/bisq2-hidpi
|
||||
substituteAllInPlace $out/bin/bisq2-hidpi
|
||||
|
||||
for n in 16 24 32 48 64 96 128 256; do
|
||||
size=$n"x"$n
|
||||
magick convert opt/bisq2/lib/Bisq2.png -resize $size bisq2.png
|
||||
install -Dm644 -t $out/share/icons/hicolor/$size/apps bisq2.png
|
||||
done;
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Decentralized bitcoin exchange network";
|
||||
homepage = "https://bisq.network";
|
||||
mainProgram = "bisq2";
|
||||
sourceProvenance = with sourceTypes; [
|
||||
binaryBytecode
|
||||
];
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ emmanuelrosa ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -6,14 +6,14 @@
|
||||
}:
|
||||
python3Packages.buildPythonApplication {
|
||||
pname = "exo";
|
||||
version = "0-unstable-2024-10-21";
|
||||
version = "0-unstable-2024-10-29";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "exo-explore";
|
||||
repo = "exo";
|
||||
rev = "82a708f974b9a720e127c38a383f22e129be6373";
|
||||
hash = "sha256-BhhcYOipdLAviTzWRdNLMMPiND4mYv9Mkn8/yxo0vXY=";
|
||||
rev = "50a1b171f64a75594793147aa39db933ef38aed9";
|
||||
hash = "sha256-hzguPEQDTKBWe8Um+pwJpsctPbQqA6QW5LGknKWFaKo=";
|
||||
};
|
||||
|
||||
build-system = with python3Packages; [ setuptools ];
|
||||
@ -29,8 +29,6 @@ python3Packages.buildPythonApplication {
|
||||
blobfile
|
||||
grpcio
|
||||
grpcio-tools
|
||||
hf-transfer
|
||||
huggingface-hub
|
||||
jinja2
|
||||
netifaces
|
||||
numpy
|
||||
@ -39,13 +37,11 @@ python3Packages.buildPythonApplication {
|
||||
prometheus-client
|
||||
protobuf
|
||||
psutil
|
||||
pydantic
|
||||
requests
|
||||
rich
|
||||
safetensors
|
||||
tailscale
|
||||
tenacity
|
||||
tiktoken
|
||||
tokenizers
|
||||
tqdm
|
||||
transformers
|
||||
tinygrad
|
||||
|
181
pkgs/by-name/hi/hiddify-app/package.nix
Normal file
181
pkgs/by-name/hi/hiddify-app/package.nix
Normal file
@ -0,0 +1,181 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
flutter,
|
||||
buildGoModule,
|
||||
libayatana-appindicator,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
makeDesktopItem,
|
||||
copyDesktopItems,
|
||||
wrapGAppsHook3,
|
||||
autoPatchelfHook,
|
||||
}:
|
||||
let
|
||||
pname = "hiddify-app";
|
||||
version = "2.5.7-unstable-2024-10-30";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hiddify";
|
||||
repo = "hiddify-app";
|
||||
rev = "0144cddf670df11d1586a0dc76483f4c4f5b4230";
|
||||
hash = "sha256-bjZkc0H0409YxM6AGrhm6gPaKNj/9SiVs0AUPoLJX+o=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
libcore = buildGoModule rec {
|
||||
inherit pname version src;
|
||||
|
||||
modRoot = "./libcore";
|
||||
|
||||
vendorHash = "sha256-a7NFZt4/w2+oaZG3ncaOrrhASxUptcWS/TeaIQrgLe4=";
|
||||
|
||||
GO_PUBLIC_FLAGS = ''
|
||||
-tags "with_gvisor,with_quic,with_wireguard,with_ech,with_utls,with_clash_api,with_grpc" \
|
||||
-trimpath \
|
||||
-ldflags "-s -w" \
|
||||
'';
|
||||
|
||||
postPatch = ''
|
||||
sed -i '/import (/a\ \t"os"\n\t"path/filepath"' ./libcore/v2/db/hiddify_db.go
|
||||
substituteInPlace ./libcore/v2/db/hiddify_db.go \
|
||||
--replace-fail 'NewGoLevelDBWithOpts(name, "./data", ' 'NewGoLevelDBWithOpts(name, filepath.Join(os.Getenv("HOME"), ".local", "share", "app.hiddify.com", "data"), '
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
go build ${GO_PUBLIC_FLAGS} -buildmode=c-shared -o bin/lib/libcore.so ./custom
|
||||
mkdir lib
|
||||
cp bin/lib/libcore.so ./lib/libcore.so
|
||||
CGO_LDFLAGS="./lib/libcore.so" go build ${GO_PUBLIC_FLAGS} -o bin/HiddifyCli ./cli/bydll
|
||||
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin $out/lib
|
||||
cp ./bin/HiddifyCli $out/bin/HiddifyCli
|
||||
cp ./lib/libcore.so $out/lib/libcore.so
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc";
|
||||
homepage = "https://hiddify.com";
|
||||
mainProgram = "HiddifyCli";
|
||||
license = lib.licenses.cc-by-nc-sa-40;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ aucub ];
|
||||
};
|
||||
};
|
||||
sqlite-autoconf = fetchurl {
|
||||
url = "https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz";
|
||||
hash = "sha256-b45qezNSc3SIFvmztiu9w3Koid6HgtfwSMZTpEdBen0=";
|
||||
};
|
||||
in
|
||||
flutter.buildFlutterApplication {
|
||||
inherit pname version src;
|
||||
|
||||
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
||||
|
||||
buildInputs = [
|
||||
libayatana-appindicator
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
autoPatchelfHook
|
||||
wrapGAppsHook3
|
||||
copyDesktopItems
|
||||
];
|
||||
|
||||
customSourceBuilders = {
|
||||
sqlite3_flutter_libs =
|
||||
{ version, src, ... }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sqlite3_flutter_libs";
|
||||
inherit version src;
|
||||
inherit (src) passthru;
|
||||
postPatch = ''
|
||||
substituteInPlace linux/CMakeLists.txt \
|
||||
--replace-fail "https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz" "file://${sqlite-autoconf}"
|
||||
'';
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir $out
|
||||
cp -a ./* $out/
|
||||
runHook postInstall
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace ./linux/my_application.cc \
|
||||
--replace-fail "./hiddify.png" "${placeholder "out"}/share/pixmaps/hiddify.png"
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
cp -r ${libcore}/lib libcore/bin/lib
|
||||
cp ${libcore}/bin/HiddifyCli libcore/bin/HiddifyCli
|
||||
packageRun build_runner build --delete-conflicting-outputs
|
||||
packageRun slang
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/pixmaps/
|
||||
cp ./assets/images/source/ic_launcher_border.png $out/share/pixmaps/hiddify.png
|
||||
'';
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = "hiddify";
|
||||
exec = "hiddify";
|
||||
icon = "hiddify";
|
||||
genericName = "Hiddify";
|
||||
desktopName = "Hiddify";
|
||||
categories = [
|
||||
"Network"
|
||||
];
|
||||
keywords = [
|
||||
"Hiddify"
|
||||
"Proxy"
|
||||
"VPN"
|
||||
"V2ray"
|
||||
"Nekoray"
|
||||
"Xray"
|
||||
"Psiphon"
|
||||
"OpenVPN"
|
||||
];
|
||||
})
|
||||
];
|
||||
|
||||
flutterBuildFlags = [
|
||||
"--target lib/main_prod.dart"
|
||||
];
|
||||
|
||||
gitHashes = {
|
||||
circle_flags = "sha256-dqORH4yj0jU8r9hP9NTjrlEO0ReHt4wds7BhgRPq57g=";
|
||||
flutter_easy_permission = "sha256-fs2dIwFLmeDrlFIIocGw6emOW1whGi9W7nQ7mHqp8R0=";
|
||||
humanizer = "sha256-zsDeol5l6maT8L8R6RRtHyd7CJn5908nvRXIytxiPqc=";
|
||||
};
|
||||
|
||||
extraWrapProgramArgs = ''
|
||||
--prefix LD_LIBRARY_PATH : "$out/app/${pname}/lib"
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" $out/app/${pname}/lib/lib*.so
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc";
|
||||
homepage = "https://hiddify.com";
|
||||
mainProgram = "hiddify";
|
||||
license = lib.licenses.cc-by-nc-sa-40;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ aucub ];
|
||||
};
|
||||
}
|
2531
pkgs/by-name/hi/hiddify-app/pubspec.lock.json
Normal file
2531
pkgs/by-name/hi/hiddify-app/pubspec.lock.json
Normal file
File diff suppressed because it is too large
Load Diff
8
pkgs/by-name/ru/rustdesk-flutter/Cargo.lock
generated
8
pkgs/by-name/ru/rustdesk-flutter/Cargo.lock
generated
@ -3043,7 +3043,7 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
||||
[[package]]
|
||||
name = "hwcodec"
|
||||
version = "0.7.0"
|
||||
source = "git+https://github.com/rustdesk-org/hwcodec#f74410edec91435252b8394c38f8eeca87ad2a26"
|
||||
source = "git+https://github.com/rustdesk-org/hwcodec#8bbd05bb300ad07cc345356ad85570f9ea99fbfa"
|
||||
dependencies = [
|
||||
"bindgen 0.59.2",
|
||||
"cc",
|
||||
@ -5197,7 +5197,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "rdev"
|
||||
version = "0.5.0-2"
|
||||
source = "git+https://github.com/rustdesk-org/rdev#d4c1759926d693ba269e2cb8cf9f87b13e424e4e"
|
||||
source = "git+https://github.com/rustdesk-org/rdev#961d25cc00c6b3ef80f444e6a7bed9872e2c35ea"
|
||||
dependencies = [
|
||||
"cocoa 0.24.1",
|
||||
"core-foundation 0.9.4",
|
||||
@ -5472,7 +5472,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "rustdesk"
|
||||
version = "1.3.1"
|
||||
version = "1.3.2"
|
||||
dependencies = [
|
||||
"android-wakelock",
|
||||
"android_logger",
|
||||
@ -5572,7 +5572,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "rustdesk-portable-packer"
|
||||
version = "1.3.1"
|
||||
version = "1.3.2"
|
||||
dependencies = [
|
||||
"brotli",
|
||||
"dirs 5.0.1",
|
||||
|
@ -29,7 +29,7 @@ let
|
||||
|
||||
flutterRustBridge = rustPlatform.buildRustPackage rec {
|
||||
pname = "flutter_rust_bridge_codegen";
|
||||
version = "1.80.1"; # https://github.com/rustdesk/rustdesk/blob/1.3.1/.github/workflows/bridge.yml#L10
|
||||
version = "1.80.1"; # https://github.com/rustdesk/rustdesk/blob/1.3.2/.github/workflows/bridge.yml#L10
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fzyzcjy";
|
||||
@ -51,12 +51,12 @@ let
|
||||
in
|
||||
flutter319.buildFlutterApplication rec {
|
||||
pname = "rustdesk";
|
||||
version = "1.3.1";
|
||||
version = "1.3.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rustdesk";
|
||||
repo = "rustdesk";
|
||||
rev = version;
|
||||
hash = "sha256-PioaSdvgJ9oXC5DAbl+em7rxcGx1om9+sjCMdrvox90=";
|
||||
hash = "sha256-SvK11IuuTkO8sxLVnYyyRtYyzV6R9NwMtyY5UCdw/P8=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
@ -64,13 +64,13 @@ flutter319.buildFlutterApplication rec {
|
||||
|
||||
# Configure the Flutter/Dart build
|
||||
sourceRoot = "${src.name}/flutter";
|
||||
# curl https://raw.githubusercontent.com/rustdesk/rustdesk/1.3.1/flutter/pubspec.lock | yq > pubspec.lock.json
|
||||
# curl https://raw.githubusercontent.com/rustdesk/rustdesk/1.3.2/flutter/pubspec.lock | yq > pubspec.lock.json
|
||||
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
||||
gitHashes = {
|
||||
dash_chat_2 = "sha256-J5Bc6CeCoRGN870aNEVJ2dkQNb+LOIZetfG2Dsfz5Ow=";
|
||||
desktop_multi_window = "sha256-6nbOUmGTmJQx3Dr4MI6cKWwB1jEgUFUeHx24gpCkWY0=";
|
||||
desktop_multi_window = "sha256-yIhcsTb3/mynUDE05c7dANj32O2tcZl8m0Tw8d36J/4=";
|
||||
dynamic_layouts = "sha256-eFp1YVI6vI2HRgtE5nTqGZIylB226H0O8kuxy9ypuf8=";
|
||||
flutter_gpu_texture_renderer = "sha256-0znIHlZ0ashRTev2kAXU179eq/V1RJC9Hp4jAfiPh5Q=";
|
||||
flutter_gpu_texture_renderer = "sha256-6m34FB9Zi4wWbpQQ7uwtMnjUBvdCQnqlkHtWcZddtqU=";
|
||||
flutter_improved_scrolling = "sha256-fKs1+JmhDVVfjyhr6Fl17pc6n++mCTjBo1PT3l/DUnc=";
|
||||
window_manager = "sha256-CUTcSl+W7Wz/Og5k9ujOdAlhKWv/gIYe58wurf9CJH4=";
|
||||
window_size = "sha256-+lqY46ZURT0qcqPvHFXUnd83Uvfq79Xr+rw1AHqrpak=";
|
||||
@ -90,7 +90,7 @@ flutter319.buildFlutterApplication rec {
|
||||
"confy-0.4.0-2" = "sha256-V7BCKISrkJIxWC3WT5+B5Vav86YTQvdO9TO6A++47FU=";
|
||||
"core-foundation-0.9.3" = "sha256-iB4OVmWZhuWbs9RFWvNc+RNut6rip2/50o5ZM6c0c3g=";
|
||||
"evdev-0.11.5" = "sha256-aoPmjGi/PftnH6ClEWXHvIj0X3oh15ZC1q7wPC1XPr0=";
|
||||
"hwcodec-0.7.0" = "sha256-SswZI2BJ4pRXT379cziJlisPsc5sOiOiDqJ5WaPETnA=";
|
||||
"hwcodec-0.7.0" = "sha256-JdpaKIzI6AOaHPB4SeWIccpP7FuDLP00fOFnbA9DIEc=";
|
||||
"impersonate_system-0.1.0" = "sha256-pIV7s2qGoCIUrhaRovBDCJaGQ/pMdJacDXJmeBpkcyI=";
|
||||
"keepawake-0.4.3" = "sha256-cqSpkq/PCz+5+ZUyPy5hF6rP3fBzuZDywyxMUQ50Rk4=";
|
||||
"machine-uid-0.3.0" = "sha256-rEOyNThg6p5oqE9URnxSkPtzyW8D4zKzLi9pAnzTElE=";
|
||||
@ -98,7 +98,7 @@ flutter319.buildFlutterApplication rec {
|
||||
"pam-0.7.0" = "sha256-o47tVoFlW9RiL7O8Lvuwz7rMYQHO+5TG27XxkAdHEOE=";
|
||||
"pam-sys-1.0.0-alpha4" = "sha256-5HIErVWnanLo5054NgU+DEKC2wwyiJ8AHvbx0BGbyWo=";
|
||||
"parity-tokio-ipc-0.7.3-4" = "sha256-PKw2Twd2ap+tRrQxqg8T1FvpoeKn0hvBqn1Z44F1LcY=";
|
||||
"rdev-0.5.0-2" = "sha256-G+PvnA5mZyN080uoI5CGj/dQ9B1J4h5iYd7214MKBR8=";
|
||||
"rdev-0.5.0-2" = "sha256-0e8NMPMlzkmghe/E4SssoRzbGG2jWMKwxzVpiJ8MnDo=";
|
||||
"reqwest-0.11.23" = "sha256-kEUT+gs4ziknDiGdPMLnj5pmxC5SBpLopZ8jZ34GDWc=";
|
||||
"rust-pulsectl-0.2.12" = "sha256-8jXTspWvjONFcvw9/Z8C43g4BuGZ3rsG32tvLMQbtbM=";
|
||||
"sciter-rs-0.5.57" = "sha256-5Nd9npdx8yQJEczHv7WmSmrE1lBfvp5z7BubTbYBg3E=";
|
||||
@ -242,7 +242,7 @@ flutter319.buildFlutterApplication rec {
|
||||
description = "Virtual / remote desktop infrastructure for everyone! Open source TeamViewer / Citrix alternative";
|
||||
homepage = "https://rustdesk.com";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ das_j ];
|
||||
maintainers = teams.helsinki-systems.members;
|
||||
mainProgram = "rustdesk";
|
||||
platforms = platforms.linux; # should work on darwin as well but I have no machine to test with
|
||||
};
|
||||
|
@ -416,7 +416,7 @@
|
||||
"description": {
|
||||
"path": ".",
|
||||
"ref": "HEAD",
|
||||
"resolved-ref": "80b063b9d4e015f62e17f42a5aa0b3d20a365926",
|
||||
"resolved-ref": "519350f1f40746798299e94786197d058353bac9",
|
||||
"url": "https://github.com/rustdesk-org/rustdesk_desktop_multi_window"
|
||||
},
|
||||
"source": "git",
|
||||
|
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage {
|
||||
|
||||
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
|
||||
|
||||
cargoHash = "sha256-3OjZhWAgfmMZ0OGeRawk3KZpPqz1QCVkwsyGM+E7o88=";
|
||||
cargoHash = "sha256-DOG/IMtHYjdzfPVyFDN20+VB4oEzdSle28F07DydETc=";
|
||||
|
||||
buildInputs = [
|
||||
libxkbcommon
|
||||
|
@ -1,25 +1,25 @@
|
||||
{
|
||||
"version": "0.133.0",
|
||||
"version": "0.136.0",
|
||||
"binaries": {
|
||||
"aarch64-darwin": {
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.133.0/darwin/arm64/yc",
|
||||
"hash": "sha256-qdpiMIQygggXRysEClQPCSTHyG4Iz3qsqcpkGUmPylQ="
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.136.0/darwin/arm64/yc",
|
||||
"hash": "sha256-tX0YL906t7jSp1cMBrlPvK8xYpZocMM1dyVvrBxjbWQ="
|
||||
},
|
||||
"aarch64-linux": {
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.133.0/linux/arm64/yc",
|
||||
"hash": "sha256-GyAeEIF07DmNFLYsmhmc76pEK7uao5v3XswG/mY0HNA="
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.136.0/linux/arm64/yc",
|
||||
"hash": "sha256-AKix6Qp+3rwv2MzI/e7QDkNS9v84gZV0mWydPDZZBQM="
|
||||
},
|
||||
"i686-linux": {
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.133.0/linux/386/yc",
|
||||
"hash": "sha256-j3Ieq2C+/LHHX7W5xhi77xKLqlMWV6MeCEVmR46ZLDk="
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.136.0/linux/386/yc",
|
||||
"hash": "sha256-897mGRv1D5vhgMUsbPB96UJuFxJO44YZh4OpGb8yKhc="
|
||||
},
|
||||
"x86_64-darwin": {
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.133.0/darwin/amd64/yc",
|
||||
"hash": "sha256-0HnSg1cwLDwv8RuGPZ0wJcCD1vCYOCjJJfLxu5b7hag="
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.136.0/darwin/amd64/yc",
|
||||
"hash": "sha256-wwcISiHla+Kd9emFlfK/hKmD8+L5jx0vIrrxtf+3WX0="
|
||||
},
|
||||
"x86_64-linux": {
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.133.0/linux/amd64/yc",
|
||||
"hash": "sha256-kP0BJUTVtRcyE/S24hBQrKxu/A4Zxo+PzlhdVZbcNc8="
|
||||
"url": "https://storage.yandexcloud.net/yandexcloud-yc/release/0.136.0/linux/amd64/yc",
|
||||
"hash": "sha256-7q7MR/aP8uUwRu8hsLOJosn9/uIOMZW8Q+VAVtbf6qk="
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ let
|
||||
++ optionals (versionOlder version "19.0.0") [ "i686-linux" ];
|
||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||
# https://www.electronjs.org/docs/latest/tutorial/electron-timelines
|
||||
knownVulnerabilities = optional (versionOlder version "30.0.0") "Electron version ${version} is EOL";
|
||||
knownVulnerabilities = optional (versionOlder version "31.0.0") "Electron version ${version} is EOL";
|
||||
};
|
||||
|
||||
fetcher = vers: tag: hash: fetchurl {
|
||||
|
@ -49,14 +49,7 @@ in ((chromium.override { upstream-info = info.chromium; }).mkDerivation (base: {
|
||||
|
||||
src = null;
|
||||
|
||||
patches = base.patches ++ lib.optional (lib.versionOlder info.version "30")
|
||||
(substituteAll {
|
||||
# disable a component that requires CIPD blobs
|
||||
name = "disable-screen-ai.patch";
|
||||
src = ./disable-screen-ai.patch;
|
||||
inherit (info) version;
|
||||
})
|
||||
;
|
||||
patches = base.patches;
|
||||
|
||||
unpackPhase = ''
|
||||
runHook preUnpack
|
||||
@ -174,9 +167,6 @@ in ((chromium.override { upstream-info = info.chromium; }).mkDerivation (base: {
|
||||
dawn_use_built_dxc = false;
|
||||
v8_enable_private_mapping_fork_optimization = true;
|
||||
v8_expose_public_symbols = true;
|
||||
} // lib.optionalAttrs (lib.versionOlder info.version "31") {
|
||||
use_perfetto_client_library = false;
|
||||
} // lib.optionalAttrs (lib.versionAtLeast info.version "31") {
|
||||
enable_dangling_raw_ptr_feature_flag = false;
|
||||
clang_unsafe_buffers_paths = "";
|
||||
enterprise_cloud_content_analysis = false;
|
||||
|
@ -1,921 +1,4 @@
|
||||
{
|
||||
"30": {
|
||||
"chrome": "124.0.6367.243",
|
||||
"chromium": {
|
||||
"deps": {
|
||||
"gn": {
|
||||
"hash": "sha256-aEL1kIhgPAFqdb174dG093HoLhCJ07O1Kpqfu7r14wQ=",
|
||||
"rev": "22581fb46c0c0c9530caa67149ee4dd8811063cf",
|
||||
"url": "https://gn.googlesource.com/gn",
|
||||
"version": "2024-03-14"
|
||||
}
|
||||
},
|
||||
"version": "124.0.6367.243"
|
||||
},
|
||||
"chromium_npm_hash": "sha256-oILlQlzTcc0YqAvK5htRvG/YXWJTDtJ60Z1EcBEj9dw=",
|
||||
"deps": {
|
||||
"src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YrAJnuNig6v87+eNnZ2W+PCzxjGe5CuymF6ul/v9SCk=",
|
||||
"postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ",
|
||||
"rev": "124.0.6367.243",
|
||||
"url": "https://chromium.googlesource.com/chromium/src.git"
|
||||
},
|
||||
"src/chrome/test/data/perf/canvas_bench": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
|
||||
"rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732",
|
||||
"url": "https://chromium.googlesource.com/chromium/canvas_bench.git"
|
||||
},
|
||||
"src/chrome/test/data/perf/frame_rate/content": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
|
||||
"rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9",
|
||||
"url": "https://chromium.googlesource.com/chromium/frame_rate/content.git"
|
||||
},
|
||||
"src/chrome/test/data/xr/webvr_info": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
|
||||
"rev": "c58ae99b9ff9e2aa4c524633519570bf33536248",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git"
|
||||
},
|
||||
"src/docs/website": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-2WyiSqza9Mp2G8KHUnrzfikC7hGcUTLu4/W9AD6Zdi4=",
|
||||
"rev": "02057aa20e0dd4598967e3daf2f25c815962ef1c",
|
||||
"url": "https://chromium.googlesource.com/website.git"
|
||||
},
|
||||
"src/electron": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-LkDhMO6FOS/8WgAQBs3HZ8ujkS4yBtVJR7ARxEiJIME=",
|
||||
"owner": "electron",
|
||||
"repo": "electron",
|
||||
"rev": "v30.5.1"
|
||||
},
|
||||
"src/media/cdm/api": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
|
||||
"rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28",
|
||||
"url": "https://chromium.googlesource.com/chromium/cdm.git"
|
||||
},
|
||||
"src/net/third_party/quiche/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-BJ3CCKFHOcIgIqnYxfjfOqbRhnt9ycrZfAFRZOLPYZQ=",
|
||||
"rev": "9f8738892edd83219d2f83fdd73c7c14d5dbb80d",
|
||||
"url": "https://quiche.googlesource.com/quiche.git"
|
||||
},
|
||||
"src/third_party/accessibility_test_framework/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-mzVgoxxBWebesG6okyMxxmO6oH+TITA4o9ucHHMMzkQ=",
|
||||
"rev": "4a764c690353ea136c82f1a696a70bf38d1ef5fe",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/Accessibility-Test-Framework-for-Android.git"
|
||||
},
|
||||
"src/third_party/angle": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-MFXZ7gEO8vHFHtjzzLSgGlB9AKx+hndPfmwsE5XHGXo=",
|
||||
"rev": "bda89e1f7c7195a9d03d037039c2dd5057563a59",
|
||||
"url": "https://chromium.googlesource.com/angle/angle.git"
|
||||
},
|
||||
"src/third_party/angle/third_party/VK-GL-CTS/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-eQvZmm6aAsI+z++SMM9i/SsREjikIjMLpedzw57eKyA=",
|
||||
"rev": "ec9827528085fcffca353c8d941ec20e3de7aaea",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS"
|
||||
},
|
||||
"src/third_party/angle/third_party/glmark2/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
|
||||
"rev": "ca8de51fedb70bace5351c6b002eb952c747e889",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2"
|
||||
},
|
||||
"src/third_party/angle/third_party/rapidjson/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
|
||||
"rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson"
|
||||
},
|
||||
"src/third_party/anonymous_tokens/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-ZKvfil6V4PexxVl/UCW/mUINlCHBTrZnhTB0UhTW0PQ=",
|
||||
"rev": "321a40ba18a083feccb8ae2f99a8676bb1702676",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git"
|
||||
},
|
||||
"src/third_party/beto-core/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-7GkqH4hgTVmISjUy/Km/X28tBSsiMs3JRnDmol1zaag=",
|
||||
"rev": "8bd72cfb219344308ee857bcbe65a27fe91acfe8",
|
||||
"url": "https://beto-core.googlesource.com/beto-core.git"
|
||||
},
|
||||
"src/third_party/boringssl/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-RiDdH26xzoAD2NdTNKDraco9p2jKHXJxbRWI3pUhI78=",
|
||||
"rev": "4fa4804c8ab4521079af62dba5260a99c34b8a29",
|
||||
"url": "https://boringssl.googlesource.com/boringssl.git"
|
||||
},
|
||||
"src/third_party/breakpad/breakpad": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-qAIXZ1jZous0Un0jVkOQ66nA2525NziV3Lbso2/+Z1Y=",
|
||||
"rev": "76788faa4ef163081f82273bfca7fae8a734b971",
|
||||
"url": "https://chromium.googlesource.com/breakpad/breakpad.git"
|
||||
},
|
||||
"src/third_party/cast_core/public/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
|
||||
"rev": "71f51fd6fa45fac73848f65421081edd723297cd",
|
||||
"url": "https://chromium.googlesource.com/cast_core/public"
|
||||
},
|
||||
"src/third_party/catapult": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-HhpP5OeGF9in2XEoZMfMCIAFHAqlDvJpfSWa8JfGWzM=",
|
||||
"rev": "9128ec6d34905512199f953bc60ff75ca29d0cf2",
|
||||
"url": "https://chromium.googlesource.com/catapult.git"
|
||||
},
|
||||
"src/third_party/ced/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
|
||||
"rev": "ba412eaaacd3186085babcd901679a48863c7dd5",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git"
|
||||
},
|
||||
"src/third_party/chromium-variations": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YwnqJynhunMvIduUcJ1/nBLabe/WS4RDox+XLMYMA2c=",
|
||||
"rev": "e78e275e34f94fdf333245137878f0f6482db67d",
|
||||
"url": "https://chromium.googlesource.com/chromium-variations.git"
|
||||
},
|
||||
"src/third_party/clang-format/script": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
|
||||
"rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git"
|
||||
},
|
||||
"src/third_party/cld_3/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
|
||||
"rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git"
|
||||
},
|
||||
"src/third_party/colorama/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
|
||||
"rev": "3de9f013df4b470069d03d250224062e8cf15c49",
|
||||
"url": "https://chromium.googlesource.com/external/colorama.git"
|
||||
},
|
||||
"src/third_party/content_analysis_sdk/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-f5Jmk1MiGjaRdLun+v/GKVl8Yv9hOZMTQUSxgiJalcY=",
|
||||
"rev": "9a408736204513e0e95dd2ab3c08de0d95963efc",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git"
|
||||
},
|
||||
"src/third_party/cpu_features/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
|
||||
"rev": "936b9ab5515dead115606559502e3864958f7f6e",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git"
|
||||
},
|
||||
"src/third_party/cpuinfo/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-9QRj4OA1qWlZujVJ6Z9x3190taVjTCZocM/272eepIs=",
|
||||
"rev": "aa4b2163b99ac9534194520f70b93eeefb0b3b4e",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git"
|
||||
},
|
||||
"src/third_party/crc32c/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
|
||||
"rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git"
|
||||
},
|
||||
"src/third_party/cros-components/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-w2VosAdg+GtalFaGxDB8FB2w7498PMudsXxX4SpJqYE=",
|
||||
"rev": "a254b37189cf97cfc76634644e58be511aefb69a",
|
||||
"url": "https://chromium.googlesource.com/external/google3/cros_components.git"
|
||||
},
|
||||
"src/third_party/cros_system_api": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-dFp4Hy7fldUjXxUTtcyRXdt7zpIP2lchzDKkk0b+iko=",
|
||||
"rev": "9a51dc89c4f21362e858b20a6a7cc8adfd7c7238",
|
||||
"url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git"
|
||||
},
|
||||
"src/third_party/crossbench": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-4gQn5y/Z6ccYA/0VjIQfMpFMkEuPA78jyCgZ+FpmsFs=",
|
||||
"rev": "acbea986f40578f43c88239c78c797f61842e642",
|
||||
"url": "https://chromium.googlesource.com/crossbench.git"
|
||||
},
|
||||
"src/third_party/dav1d/libdav1d": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-AA2bcrsW1xFspyl5TqYUJeAwKM06rWTNtXr/uMVIJmw=",
|
||||
"rev": "006ca01d387ac6652825d6cce1a57b2de67dbf8d",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git"
|
||||
},
|
||||
"src/third_party/dawn": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-W0E0fhjAc5gdTgIsy+iOAFA7GPEFeMPPJEU5nnRUtbM=",
|
||||
"rev": "e04b03f714994b7a747b5472da4ffae9e6e38938",
|
||||
"url": "https://dawn.googlesource.com/dawn.git"
|
||||
},
|
||||
"src/third_party/dawn/third_party/dxc": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-bqzkbBbf1btIz84odYfC3c69m6kgssHy2+a9aR+EUaQ=",
|
||||
"rev": "511cfef8e0509d172fbfa156be8a97ed2b42590b",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler"
|
||||
},
|
||||
"src/third_party/dawn/third_party/dxheaders": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
|
||||
"rev": "980971e835876dc0cde415e8f9bc646e64667bf7",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers"
|
||||
},
|
||||
"src/third_party/dawn/third_party/glfw": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
|
||||
"rev": "62e175ef9fae75335575964c845a302447c012c7",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/glfw/glfw"
|
||||
},
|
||||
"src/third_party/dawn/third_party/khronos/EGL-Registry": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
|
||||
"rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry"
|
||||
},
|
||||
"src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
|
||||
"rev": "5bae8738b23d06968e7c3a41308568120943ae77",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry"
|
||||
},
|
||||
"src/third_party/dawn/third_party/webgpu-cts": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-VTYTdvBNxqRzYjEx5ml4LnkDEUGpyvssSzDOndHyYgU=",
|
||||
"rev": "3e45aee0b16dc724a79a0feb0490e2ddb06c9f0d",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts"
|
||||
},
|
||||
"src/third_party/depot_tools": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YmjhwOjqCRxDhC7P+aRoNN+Vokl7hB4s6hDNFS5gLYo=",
|
||||
"rev": "9c43bc14f1a7404fd4b6f744050d553acca557bf",
|
||||
"url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
|
||||
},
|
||||
"src/third_party/devtools-frontend/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-FVYUoK3KWlIjQTWlNkjmnzJDfpRkEZ9sFWTr4GdOUJw=",
|
||||
"rev": "694ad4ed3c55195acd701950d2b2528880e9201e",
|
||||
"url": "https://chromium.googlesource.com/devtools/devtools-frontend"
|
||||
},
|
||||
"src/third_party/dom_distiller_js/dist": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
|
||||
"rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d",
|
||||
"url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git"
|
||||
},
|
||||
"src/third_party/eigen3/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-tx/XR7xJ7IMh5RMvL8wRo/g+dfD3xcjZkLPSY4D9HaY=",
|
||||
"rev": "2a9055b50ed22101da7d77e999b90ed50956fe0b",
|
||||
"url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git"
|
||||
},
|
||||
"src/third_party/electron_node": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-3pcWLDR1Y6oJUuwtequ5pK7nGwPeOqzALVNGJYskuc0=",
|
||||
"owner": "nodejs",
|
||||
"repo": "node",
|
||||
"rev": "v20.16.0"
|
||||
},
|
||||
"src/third_party/emoji-segmenter/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
|
||||
"rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git"
|
||||
},
|
||||
"src/third_party/engflow-reclient-configs": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-aZXYPj9KYBiZnljqOLlWJWS396Fg3EhjiQLZmkwCBsY=",
|
||||
"owner": "EngFlow",
|
||||
"repo": "reclient-configs",
|
||||
"rev": "955335c30a752e9ef7bff375baab5e0819b6c00d"
|
||||
},
|
||||
"src/third_party/expat/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
|
||||
"rev": "441f98d02deafd9b090aea568282b28f66a50e36",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git"
|
||||
},
|
||||
"src/third_party/farmhash/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
|
||||
"rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git"
|
||||
},
|
||||
"src/third_party/ffmpeg": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-5ynDd2wQ3QtS6SM2X+j3hTKB9aVhGrjoIlGSzy43K8Q=",
|
||||
"rev": "52d8ef3799b2f16b66351dd0972bb0bcee1648ac",
|
||||
"url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git"
|
||||
},
|
||||
"src/third_party/flac": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
|
||||
"rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/flac.git"
|
||||
},
|
||||
"src/third_party/flatbuffers/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-LecJwLDG6szZZ/UOCFD+MDqH3NKawn0sdEwgnMt8wMM=",
|
||||
"rev": "bcb9ef187628fe07514e57756d05e6a6296f7dc5",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git"
|
||||
},
|
||||
"src/third_party/fontconfig/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-W5WIgC6A52kY4fNkbsDEa0o+dfd97Rl5NKfgnIRpI00=",
|
||||
"rev": "14d466b30a8ab4a9d789977ed94f2c30e7209267",
|
||||
"url": "https://chromium.googlesource.com/external/fontconfig.git"
|
||||
},
|
||||
"src/third_party/fp16/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
|
||||
"rev": "0a92994d729ff76a58f692d3028ca1b64b145d91",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git"
|
||||
},
|
||||
"src/third_party/freetype-testing/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
|
||||
"rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git"
|
||||
},
|
||||
"src/third_party/freetype/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-FtFRJaxyp7vo4EPBiqx05OsKo1UA1g/h+9BjuoijLFA=",
|
||||
"rev": "f42ce25563b73fed0123d18a2556b9ba01d2c76b",
|
||||
"url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git"
|
||||
},
|
||||
"src/third_party/fuzztest/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-utl9uwFqMqDW9ll9/3lh3rfjmPHlv5sx/enQuPffQZ8=",
|
||||
"rev": "bddcd9f77ba0a81a99ce50bcadf5149efe545df0",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git"
|
||||
},
|
||||
"src/third_party/fxdiv/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
|
||||
"rev": "63058eff77e11aa15bf531df5dd34395ec3017c8",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git"
|
||||
},
|
||||
"src/third_party/gemmlowp/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
|
||||
"rev": "13d57703abca3005d97b19df1f2db731607a7dc2",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git"
|
||||
},
|
||||
"src/third_party/google_benchmark/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-gztnxui9Fe/FTieMjdvfJjWHjkImtlsHn6fM1FruyME=",
|
||||
"rev": "344117638c8ff7e239044fd0fa7085839fc03021",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git"
|
||||
},
|
||||
"src/third_party/googletest/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-mNYS3k2fAc7Q6GlpnO7pkXSkGHfUH1MXuZXkCmwG4q4=",
|
||||
"rev": "c231e6f5b152029dbd5fa4a9e0c04095035aec3f",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/googletest.git"
|
||||
},
|
||||
"src/third_party/grpc/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
|
||||
"rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git"
|
||||
},
|
||||
"src/third_party/harfbuzz-ng/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-VAan6P8PHSq8RsGE4YbI/wCfFAhzl3nJMt0cQBYi5Ls=",
|
||||
"rev": "155015f4bec434ecc2f94621665844218f05ce51",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git"
|
||||
},
|
||||
"src/third_party/highway/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
|
||||
"rev": "8f20644eca693cfb74aa795b0006b6779c370e7a",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/highway.git"
|
||||
},
|
||||
"src/third_party/hunspell_dictionaries": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
|
||||
"rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git"
|
||||
},
|
||||
"src/third_party/icu": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YYoslfgGfmDpSTxtCOmGGfwQg6mVU1IggzAtWRwwcMc=",
|
||||
"rev": "bad7ddbf921358177e56fd723c2f59f8041a370f",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/icu.git"
|
||||
},
|
||||
"src/third_party/jsoncpp/source": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
|
||||
"rev": "42e892d96e47b1f6e29844cc705e148ec4856448",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git"
|
||||
},
|
||||
"src/third_party/leveldatabase/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
|
||||
"rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea",
|
||||
"url": "https://chromium.googlesource.com/external/leveldb.git"
|
||||
},
|
||||
"src/third_party/libFuzzer/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-T0dO+1A0r6kLFoleMkY8heu80biPntCpvA6YfqA7b+E=",
|
||||
"rev": "758bd21f103a501b362b1ca46fa8fcb692eaa303",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git"
|
||||
},
|
||||
"src/third_party/libaddressinput/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
|
||||
"rev": "e8712e415627f22d0b00ebee8db99547077f39bd",
|
||||
"url": "https://chromium.googlesource.com/external/libaddressinput.git"
|
||||
},
|
||||
"src/third_party/libaom/source/libaom": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-zgtNjrQE+fzr8Aye0rAkQR5enzfacCAsRbC3crUrMQ4=",
|
||||
"rev": "158761dfb40e77f3a54c3b14a596112837baa24b",
|
||||
"url": "https://aomedia.googlesource.com/aom.git"
|
||||
},
|
||||
"src/third_party/libavif/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-moVf7i0gZ/KW53ACcVIWKWNL0oAimOSU1m5IdQHz6z8=",
|
||||
"rev": "43ec9ace31c6ca11efddddb61b94b744450d46e2",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git"
|
||||
},
|
||||
"src/third_party/libavifinfo/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-UAc4iYWrKWteH98hD3QLkD3JWmV/rsvWhFIVJN7tc+Q=",
|
||||
"rev": "b496868f7c3fd17dfeeecc0364fe37e19edd548a",
|
||||
"url": "https://aomedia.googlesource.com/libavifinfo.git"
|
||||
},
|
||||
"src/third_party/libc++/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-k2bSS8OhVyd0/metFpwFvRCWYOaLEU0Md4AW50GpGTM=",
|
||||
"rev": "80307e66e74bae927fb8709a549859e777e3bf0b",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git"
|
||||
},
|
||||
"src/third_party/libc++abi/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-AdyX58sg//O2e76HAcRC5DcuiTsd68QS4mNVkPv0Vck=",
|
||||
"rev": "ec88f0ab262c5f2426dbf138b92ee9ae5961e431",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git"
|
||||
},
|
||||
"src/third_party/libdrm/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
|
||||
"rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1",
|
||||
"url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git"
|
||||
},
|
||||
"src/third_party/libgav1/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-tB9Wzjs4Sct7QendDMKkaEE4ddD6ptnNCmj1yYKcQSc=",
|
||||
"rev": "f9a93151adf7203c6ab90f3c94bbd5972b7967b8",
|
||||
"url": "https://chromium.googlesource.com/codecs/libgav1.git"
|
||||
},
|
||||
"src/third_party/libipp/libipp": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
|
||||
"rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f",
|
||||
"url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git"
|
||||
},
|
||||
"src/third_party/libjpeg_turbo": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-+t75ZAdOXc7Nd1/8zEQLX+enZb8upqIQuR6qzb9z7Cg=",
|
||||
"rev": "9b894306ec3b28cea46e84c32b56773a98c483da",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git"
|
||||
},
|
||||
"src/third_party/liblouis/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
|
||||
"rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376",
|
||||
"url": "https://chromium.googlesource.com/external/liblouis-github.git"
|
||||
},
|
||||
"src/third_party/libphonenumber/dist": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
|
||||
"rev": "140dfeb81b753388e8a672900fb7a971e9a0d362",
|
||||
"url": "https://chromium.googlesource.com/external/libphonenumber.git"
|
||||
},
|
||||
"src/third_party/libprotobuf-mutator/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
|
||||
"rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git"
|
||||
},
|
||||
"src/third_party/libsrtp": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
|
||||
"rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git"
|
||||
},
|
||||
"src/third_party/libsync/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
|
||||
"rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6",
|
||||
"url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git"
|
||||
},
|
||||
"src/third_party/libunwind/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-/4/Trextb4F9UMDVrg4uG9QZl6S0H9FiwnL+2S5+ZpE=",
|
||||
"rev": "419b03c0b8f20d6da9ddcb0d661a94a97cdd7dad",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git"
|
||||
},
|
||||
"src/third_party/libvpx/source/libvpx": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-5IsUUvhcKKiWJFetS29+S7Wiz5JwqRZGK2t2ehld/M4=",
|
||||
"rev": "19832b1702d5b0adf616a0e080abd5207c8445b5",
|
||||
"url": "https://chromium.googlesource.com/webm/libvpx.git"
|
||||
},
|
||||
"src/third_party/libwebm/source": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
|
||||
"rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da",
|
||||
"url": "https://chromium.googlesource.com/webm/libwebm.git"
|
||||
},
|
||||
"src/third_party/libwebp/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Wa33opOFgcmYtycezDUt2f6PqZBse6xYB5kLuSaw95o=",
|
||||
"rev": "ca332209cb5567c9b249c86788cb2dbf8847e760",
|
||||
"url": "https://chromium.googlesource.com/webm/libwebp.git"
|
||||
},
|
||||
"src/third_party/libyuv": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-hD5B9fPNwf8M98iS/PYeUJgJxtBvvf2BrrlnBNYXSg0=",
|
||||
"rev": "a6a2ec654b1be1166b376476a7555c89eca0c275",
|
||||
"url": "https://chromium.googlesource.com/libyuv/libyuv.git"
|
||||
},
|
||||
"src/third_party/lss": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
|
||||
"rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521",
|
||||
"url": "https://chromium.googlesource.com/linux-syscall-support.git"
|
||||
},
|
||||
"src/third_party/material_color_utilities/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Y85XU+z9W6tvmDNHJ/dXQnUKXvvDkO3nH/kUJRLqbc4=",
|
||||
"rev": "13434b50dcb64a482cc91191f8cf6151d90f5465",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git"
|
||||
},
|
||||
"src/third_party/minigbm/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
|
||||
"rev": "3018207f4d89395cc271278fb9a6558b660885f5",
|
||||
"url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git"
|
||||
},
|
||||
"src/third_party/nan": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-cwti+BWmF/l/dqa/cN0C587EK4WwRWcWy6gjFVkaMTg=",
|
||||
"owner": "nodejs",
|
||||
"repo": "nan",
|
||||
"rev": "e14bdcd1f72d62bca1d541b66da43130384ec213"
|
||||
},
|
||||
"src/third_party/nasm": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-SiRXHsUlWXtH6dbDjDjqNAm105ibEB3jOfNtQAM4CaY=",
|
||||
"rev": "f477acb1049f5e043904b87b825c5915084a9a29",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/nasm.git"
|
||||
},
|
||||
"src/third_party/nearby/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YotKuKutnjuphwiElfQO6qpoNLhZGP6bqWZnW3Zv6QI=",
|
||||
"rev": "33e682f24427a0eb634bd3186fe3c6fd96bd6768",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git"
|
||||
},
|
||||
"src/third_party/neon_2_sse/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
|
||||
"rev": "a15b489e1222b2087007546b4912e21293ea86ff",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git"
|
||||
},
|
||||
"src/third_party/openh264/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
|
||||
"rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/cisco/openh264"
|
||||
},
|
||||
"src/third_party/openscreen/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-4Qd5nHJxIOY7ifPy6Xf0TgZK0TkZY48scOkJ25kMCjk=",
|
||||
"rev": "90e48ecc4ed9feeba36f49065c738d620d6f0780",
|
||||
"url": "https://chromium.googlesource.com/openscreen"
|
||||
},
|
||||
"src/third_party/openscreen/src/buildtools": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-SBorO59kMSnskcp3oP5lrGQg+9cr/Ymey2aZGlRTgu0=",
|
||||
"rev": "0ac67b7cef80e421283f633ee9c2ce652f6e42cc",
|
||||
"url": "https://chromium.googlesource.com/chromium/src/buildtools"
|
||||
},
|
||||
"src/third_party/openscreen/src/third_party/tinycbor/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
|
||||
"rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git"
|
||||
},
|
||||
"src/third_party/ots/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
|
||||
"rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git"
|
||||
},
|
||||
"src/third_party/pdfium": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-/gSW4sd2AN4m3aIs9AojqsfrXeCNNrl7wFM54KeQVxw=",
|
||||
"rev": "dcdd830ae4e1b14f85383d1baf84efee6bc853cc",
|
||||
"url": "https://pdfium.googlesource.com/pdfium.git"
|
||||
},
|
||||
"src/third_party/perfetto": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-FeI+nAa5N8mQoA8gDSmWn6nw6TSPhDGwJI8/7r/5z1c=",
|
||||
"rev": "a66020f87046d8934c22e20acb2bb8a91901ce8e",
|
||||
"url": "https://android.googlesource.com/platform/external/perfetto.git"
|
||||
},
|
||||
"src/third_party/protobuf-javascript/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-TmP6xftUVTD7yML7UEM/DB8bcsL5RFlKPyCpcboD86U=",
|
||||
"rev": "e34549db516f8712f678fcd4bc411613b5cc5295",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/protocolbuffers/protobuf-javascript"
|
||||
},
|
||||
"src/third_party/pthreadpool/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-R4YmNzWEELSkAws/ejmNVxqXDTJwcqjLU/o/HvgRn2E=",
|
||||
"rev": "4fe0e1e183925bf8cfa6aae24237e724a96479b8",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git"
|
||||
},
|
||||
"src/third_party/pyelftools": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
|
||||
"rev": "19b3e610c86fcadb837d252c794cb5e8008826ae",
|
||||
"url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git"
|
||||
},
|
||||
"src/third_party/pywebsocket3/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
|
||||
"rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git"
|
||||
},
|
||||
"src/third_party/quic_trace/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
|
||||
"rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git"
|
||||
},
|
||||
"src/third_party/re2/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-gB6vW6UJ60LrrGeNP6NKAcirIK6jgZjHRc6TA+pNXAQ=",
|
||||
"rev": "6598a8ecd57724c8c7d43b2fca8eb9f9969ce57c",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/re2.git"
|
||||
},
|
||||
"src/third_party/ruy/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-cwmKQJpR+7lp+dq8fGu6U8A+qmkXz6SlWvAdhBkKZOw=",
|
||||
"rev": "587c2cf8b11d3c32fa26887063eda3171a3d353e",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/ruy.git"
|
||||
},
|
||||
"src/third_party/securemessage/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
|
||||
"rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git"
|
||||
},
|
||||
"src/third_party/skia": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-zHfv4OZK/nVJc2rl+dBSCc4f6qndpAKcFZtThw06+LY=",
|
||||
"rev": "a747f7ea37db6ea3871816dbaf2eb41b5776c826",
|
||||
"url": "https://skia.googlesource.com/skia.git"
|
||||
},
|
||||
"src/third_party/smhasher/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
|
||||
"rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f",
|
||||
"url": "https://chromium.googlesource.com/external/smhasher.git"
|
||||
},
|
||||
"src/third_party/snappy/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
|
||||
"rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/snappy.git"
|
||||
},
|
||||
"src/third_party/speedometer/v3.0": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-qMQ4naX+4uUu3vtzzinjkhxX9/dNoTwj6vWCu4FdQmU=",
|
||||
"rev": "8d67f28d0281ac4330f283495b7f48286654ad7d",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git"
|
||||
},
|
||||
"src/third_party/sqlite/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-TsrSvL76H7SFhJWgHqyl8Y/BhAcnI9oaT2tUT6Ktan4=",
|
||||
"rev": "f51e3fa404f5853650525549c78d7489a7f457b3",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/sqlite.git"
|
||||
},
|
||||
"src/third_party/squirrel.mac": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-4GfKQg0u3c9GI+jl3ixESNqWXQJKRMi+00QT0s2Shqw=",
|
||||
"owner": "Squirrel",
|
||||
"repo": "Squirrel.Mac",
|
||||
"rev": "0e5d146ba13101a1302d59ea6e6e0b3cace4ae38"
|
||||
},
|
||||
"src/third_party/squirrel.mac/vendor/Mantle": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
|
||||
"owner": "Mantle",
|
||||
"repo": "Mantle",
|
||||
"rev": "78d3966b3c331292ea29ec38661b25df0a245948"
|
||||
},
|
||||
"src/third_party/squirrel.mac/vendor/ReactiveObjC": {
|
||||
"fetcher": "fetchFromGitHub",
|
||||
"hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
|
||||
"owner": "ReactiveCocoa",
|
||||
"repo": "ReactiveObjC",
|
||||
"rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
|
||||
},
|
||||
"src/third_party/swiftshader": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-tU0maePvL35JIVKFm+9hmPYDM81szLNYqUJyTKMHT0k=",
|
||||
"rev": "bbe6452b420c5ddc4b0fd421b0a3ce271262f4ca",
|
||||
"url": "https://swiftshader.googlesource.com/SwiftShader.git"
|
||||
},
|
||||
"src/third_party/text-fragments-polyfill/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
|
||||
"rev": "c036420683f672d685e27415de0a5f5e85bdc23f",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git"
|
||||
},
|
||||
"src/third_party/tflite/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Iqun3uMTCjGzHxUDeTCrvZufNtobnbqYVPDt7ZJ06wM=",
|
||||
"rev": "55bc062601e4ee5a4efa834a84ae5c5ec6b28306",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git"
|
||||
},
|
||||
"src/third_party/ukey2/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
|
||||
"rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git"
|
||||
},
|
||||
"src/third_party/vulkan-deps": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-MokWdjOP8Mc5hmoRrSXHXkobMPWbbmMzAMBOOoKG3gk=",
|
||||
"rev": "3cebaae6743688201c8aa9b3694bba6948f0fa68",
|
||||
"url": "https://chromium.googlesource.com/vulkan-deps"
|
||||
},
|
||||
"src/third_party/vulkan-deps/glslang/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-lP+N1d6jE+Cj5ofomgMEhbA6VbH5eKw83mY6zNIOfNk=",
|
||||
"rev": "9f37ad360ea1c32162f0cc1799b1b292594fc771",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang"
|
||||
},
|
||||
"src/third_party/vulkan-deps/spirv-cross/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-H43M9DXfEuyKuvo6rjb5k0KEbYOSFodbPJh8ZKY4PQg=",
|
||||
"rev": "b8fcf307f1f347089e3c46eb4451d27f32ebc8d3",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross"
|
||||
},
|
||||
"src/third_party/vulkan-deps/spirv-headers/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-kyOAwe4R0FmeA9IIJF2eoZR+7g9LiGKaZ7FuIfkrXJ4=",
|
||||
"rev": "8b246ff75c6615ba4532fe4fde20f1be090c3764",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers"
|
||||
},
|
||||
"src/third_party/vulkan-deps/spirv-tools/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-/Cldtx75V+z3FuColEqwweyZHEqR2NaIj1Ha/vPoCsc=",
|
||||
"rev": "c6615779ef8a1eb5ef48fef77bf3eb2cf4f5438d",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools"
|
||||
},
|
||||
"src/third_party/vulkan-deps/vulkan-headers/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-EnKiCtH6rh3ACQgokSSfp4FPFluMZW0dheP8IEzZtY4=",
|
||||
"rev": "577baa05033cf1d9236b3d078ca4b3269ed87a2b",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers"
|
||||
},
|
||||
"src/third_party/vulkan-deps/vulkan-loader/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-zkJSPshRaZRDiBvLJbJo8l1MX10KXYZniqtNTNnokT4=",
|
||||
"rev": "61a9c50248e09f3a0e0be7ce6f8bb1663855f979",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader"
|
||||
},
|
||||
"src/third_party/vulkan-deps/vulkan-tools/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-9qs0oS6W7x/1Z+wlFt91bqF09oxoloNPtjjH9mECJFk=",
|
||||
"rev": "733fd2b522918f81f9c4669350dafd066f99c5d5",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools"
|
||||
},
|
||||
"src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-mCD9/bpWUXRVJ+OyOqG0tXTgFuptIlcG6UR/RiNV1Z0=",
|
||||
"rev": "a4140c5fd47dcf3a030726a60b293db61cfb54a3",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries"
|
||||
},
|
||||
"src/third_party/vulkan-deps/vulkan-validation-layers/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Bcm5yMo7JL/E6YZetlabkA0mkEFxbWriYNd8tRtgx5k=",
|
||||
"rev": "5b8af92af052c83444ac560ff1e28c1c322424ef",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers"
|
||||
},
|
||||
"src/third_party/vulkan_memory_allocator": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=",
|
||||
"rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git"
|
||||
},
|
||||
"src/third_party/wayland-protocols/gtk": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
|
||||
"rev": "40ebed3a03aef096addc0af09fec4ec529d882a0",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git"
|
||||
},
|
||||
"src/third_party/wayland-protocols/kde": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
|
||||
"rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git"
|
||||
},
|
||||
"src/third_party/wayland-protocols/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-ljMcY59iOdGYeToadCuQ3t0lrBnsBdot+NiT6e+JJ04=",
|
||||
"rev": "681c33c8547d6aefe24455ba2bffe1c5ae11fee5",
|
||||
"url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git"
|
||||
},
|
||||
"src/third_party/wayland/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-YSo1DznmcaYSUcJl/3voVSfZfuLokAFQt6F3M1Iat28=",
|
||||
"rev": "c35d1a3d1c0a1735afe5eb227cb826faa878ec19",
|
||||
"url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git"
|
||||
},
|
||||
"src/third_party/webdriver/pylib": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
|
||||
"rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git"
|
||||
},
|
||||
"src/third_party/webgl/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-dubsIPZKBGOzANGvMtQxFKFIHr0laDUGpzgRyEOjHMU=",
|
||||
"rev": "f4bf599a8b575df685c31d9c4729a70a04e377ed",
|
||||
"url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git"
|
||||
},
|
||||
"src/third_party/webgpu-cts/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-/duXwmqanyI2KEnV5izvr0kE8tJNI1F1jMMIY0ylLH8=",
|
||||
"rev": "addbf812fd750dc8cebbd63732e7ce54a763fbee",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git"
|
||||
},
|
||||
"src/third_party/webrtc": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-USSfh+vUFrWnXYvZIORRb4AEGNSCPub2cNqEdZD9mKM=",
|
||||
"rev": "a55ff9e83e4592010969d428bee656bace8cbc3b",
|
||||
"url": "https://webrtc.googlesource.com/src.git"
|
||||
},
|
||||
"src/third_party/weston/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-y2srFaPUOoB2umzpo4+hFfhNlqXM2AoMGOpUy/ZSacg=",
|
||||
"rev": "ccf29cb237c3ed09c5f370f35239c93d07abfdd7",
|
||||
"url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git"
|
||||
},
|
||||
"src/third_party/wuffs/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-373d2F/STcgCHEq+PO+SCHrKVOo6uO1rqqwRN5eeBCw=",
|
||||
"rev": "e3f919ccfe3ef542cfc983a82146070258fb57f8",
|
||||
"url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git"
|
||||
},
|
||||
"src/third_party/xdg-utils": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-WuQ9uDq+QD17Y20ACFGres4nbkeOiTE2y+tY1avAT5U=",
|
||||
"rev": "cb54d9db2e535ee4ef13cc91b65a1e2741a94a44",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git"
|
||||
},
|
||||
"src/third_party/xnnpack/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-Cmw+rj805YTnnCwy2Zwzi2ZW4sdX5JWjTnBaUB6+YyU=",
|
||||
"rev": "7e696d941310a528dd2d6fbee3d499d19b24746d",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git"
|
||||
},
|
||||
"src/third_party/zstd/src": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-hWfYKiTzkmeiUTgNrSYXOFauusSVceVhD04Hgk69CK4=",
|
||||
"rev": "621a263fb2e6c2175fbd489e5d77ee8038baa2b2",
|
||||
"url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git"
|
||||
},
|
||||
"src/tools/page_cycler/acid3": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
|
||||
"rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba",
|
||||
"url": "https://chromium.googlesource.com/chromium/deps/acid3.git"
|
||||
},
|
||||
"src/v8": {
|
||||
"fetcher": "fetchFromGitiles",
|
||||
"hash": "sha256-ME/O8CJASZ8Ql931EaTRM3+6lLzGx1us/cK9Dv7Bd+s=",
|
||||
"rev": "cc9dc1eb196bc3cbeca92eeec62949b4ac7cd757",
|
||||
"url": "https://chromium.googlesource.com/v8/v8.git"
|
||||
}
|
||||
},
|
||||
"electron_yarn_hash": "0vq12z09hcm6xdrd34b01vx1c47r4zdaqrkw9db6r612xrp2xi0c",
|
||||
"modules": "123",
|
||||
"node": "20.16.0",
|
||||
"version": "30.5.1"
|
||||
},
|
||||
"31": {
|
||||
"chrome": "126.0.6478.234",
|
||||
"chromium": {
|
||||
|
@ -41,9 +41,10 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
sourceRoot = ".";
|
||||
|
||||
postPatch = ''
|
||||
for f in *.pkg/Library/Launch{Agents,Daemons}/*.plist; do
|
||||
substituteInPlace $f \
|
||||
--replace "/Library/" "$out/Library/"
|
||||
shopt -s globstar
|
||||
for f in *.pkg/Library/**/Launch{Agents,Daemons}/*.plist; do
|
||||
substituteInPlace "$f" \
|
||||
--replace-fail "/Library/" "$out/Library/"
|
||||
done
|
||||
'';
|
||||
|
||||
|
@ -8,11 +8,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fastnetmon-advanced";
|
||||
version = "2.0.363";
|
||||
version = "2.0.367";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://repo.fastnetmon.com/fastnetmon_ubuntu_jammy/pool/fastnetmon/f/fastnetmon/fastnetmon_${version}_amd64.deb";
|
||||
hash = "sha256-2AKUNPQ7OzuYOolJHwTnWHzB4Qpwun/77+dFCN/cE98=";
|
||||
hash = "sha256-D/4kkT6ehEmlfRUeP1uLuO/hd9ZrMBJSKF5DKYXOPxs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -27,18 +27,8 @@ stdenv.mkDerivation rec {
|
||||
ar xf $src
|
||||
tar xf data.tar.xz
|
||||
|
||||
# both clickhouse 2.0.0 and 2.3.0 libs are included, without versioning it will by
|
||||
# default choose the first it finds, but we need 2.3.0 otherwise the fastnetmon
|
||||
# binary will be missing symbols
|
||||
rm -r opt/fastnetmon/libraries/libclickhouse_2_0_0
|
||||
|
||||
# unused libraries, which have additional dependencies
|
||||
rm opt/fastnetmon/libraries/gcc1210/lib/libgccjit.so.0.0.1
|
||||
rm opt/fastnetmon/libraries/poco_1_10_0/lib/libPocoCryptod.so.70
|
||||
rm opt/fastnetmon/libraries/poco_1_10_0/lib/libPocoCrypto.so.70
|
||||
rm opt/fastnetmon/libraries/poco_1_10_0/lib/libPocoJWTd.so.70
|
||||
rm opt/fastnetmon/libraries/poco_1_10_0/lib/libPocoJWT.so.70
|
||||
rm opt/fastnetmon/libraries/wkhtmltopdf-0.12.3/wkhtmltox/lib/libwkhtmltox.so.0.12.3
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
|
@ -0,0 +1,27 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildHomeAssistantComponent,
|
||||
}:
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "bjrnptrsn";
|
||||
domain = "climate_group";
|
||||
version = "1.0.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit owner;
|
||||
repo = "climate_group";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-f/VQUNzRSxmKGNgijaafQ5NbngUUKmcdkafYC3Ol9qM=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/bjrnptrsn/climate_group/blob/${src.rev}/README.md#changelog";
|
||||
description = "Group multiple climate devices to a single entity";
|
||||
homepage = "https://github.com/bjrnptrsn/climate_group";
|
||||
maintainers = builtins.attrValues { inherit (lib.maintainers) jamiemagee; };
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
@ -1,24 +1,19 @@
|
||||
{ stdenv, fetchurl, pkg-config, darwin, lib
|
||||
, zlib, ghostscript, imagemagick, plotutils, gd
|
||||
, libjpeg, libwebp, libiconv
|
||||
, libjpeg, libwebp, libiconv, makeWrapper
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pstoedit";
|
||||
version = "3.78";
|
||||
version = "4.01";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/pstoedit/pstoedit-${version}.tar.gz";
|
||||
sha256 = "sha256-jMKONLx/iNkTeA+AdOgT3VqqCsIFams21L8ASg6Q2AE=";
|
||||
hash = "sha256-RZdlq3NssQ+VVKesAsXqfzVcbC6fz9IXYRx9UQKxB2s=";
|
||||
};
|
||||
|
||||
#
|
||||
# Turn on "-rdb" option (REALLYDELAYBIND) by default to ensure compatibility with gs-9.22
|
||||
#
|
||||
patches = [ ./pstoedit-gs-9.22-compat.patch ];
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
nativeBuildInputs = [ makeWrapper pkg-config ];
|
||||
buildInputs = [ zlib ghostscript imagemagick plotutils gd libjpeg libwebp ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||
libiconv ApplicationServices
|
||||
@ -30,6 +25,11 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace config/pstoedit.pc.in --replace '@LIBPNG_LDFLAGS@' ""
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/pstoedit \
|
||||
--prefix PATH : ${lib.makeBinPath [ ghostscript ]}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Translates PostScript and PDF graphics into other vector formats";
|
||||
homepage = "https://sourceforge.net/projects/pstoedit/";
|
||||
|
@ -1,13 +0,0 @@
|
||||
diff --git a/src/pstoeditoptions.h b/src/pstoeditoptions.h
|
||||
index 7846883..0fb6a6f 100755
|
||||
--- a/src/pstoeditoptions.h
|
||||
+++ b/src/pstoeditoptions.h
|
||||
@@ -453,7 +453,7 @@ private:
|
||||
"Later versions of Ghostscript will probably support -dDELAYBIND again. "
|
||||
"But also in that case the security risk remains. So be careful with what "
|
||||
"files you process with pstoedit and Ghostscript.",
|
||||
- false), //
|
||||
+ true), //
|
||||
#endif
|
||||
pagetoextract (true, "-page","page number",g_t,"extract a specific page: 0 means all pages",
|
||||
"Select a single page from a multi-page PostScript or PDF file.",
|
@ -3291,6 +3291,10 @@ with pkgs;
|
||||
|
||||
bisq-desktop = callPackage ../applications/blockchains/bisq-desktop { };
|
||||
|
||||
bisq2 = callPackage ../by-name/bi/bisq/package.nix {
|
||||
openjdk = jdk22.override { enableJavaFX = true; };
|
||||
};
|
||||
|
||||
bic = callPackage ../development/interpreters/bic { };
|
||||
|
||||
biscuit-cli = callPackage ../tools/security/biscuit-cli { };
|
||||
@ -16862,7 +16866,7 @@ with pkgs;
|
||||
electron_27 = electron_27-bin;
|
||||
electron_28 = electron_28-bin;
|
||||
electron_29 = electron_29-bin;
|
||||
electron_30 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_30 then electron-source.electron_30 else electron_30-bin;
|
||||
electron_30 = electron_30-bin;
|
||||
electron_31 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_31 then electron-source.electron_31 else electron_31-bin;
|
||||
electron_32 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_32 then electron-source.electron_32 else electron_32-bin;
|
||||
electron_33 = if lib.meta.availableOn stdenv.hostPlatform electron-source.electron_33 then electron-source.electron_33 else electron_33-bin;
|
||||
|
Loading…
Reference in New Issue
Block a user