Merge master into staging-next

This commit is contained in:
github-actions[bot] 2024-04-27 06:01:14 +00:00 committed by GitHub
commit ac252ffaef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
24 changed files with 132 additions and 46 deletions

View File

@ -20709,12 +20709,6 @@
githubId = 131159000;
name = "Nitin Passa";
};
twitchyliquid64 = {
name = "Tom";
email = "twitchyliquid64@ciphersink.net";
github = "twitchyliquid64";
githubId = 6328589;
};
twz123 = {
name = "Tom Wieczorek";
email = "tom@bibbu.net";
@ -22305,6 +22299,12 @@
githubId = 179548;
name = "Yves Fischer";
};
YvesStraten = {
email = "yves.straten@gmail.com";
github = "YvesStraten";
githubId = 65394961;
name = "Yves Straten";
};
yvt = {
email = "i@yvt.jp";
github = "yvt";

View File

@ -263,9 +263,7 @@ with lib.maintainers; {
};
docs = {
members = [
ryantm
];
members = [ ];
scope = "Maintain nixpkgs/NixOS documentation and tools for building it.";
shortName = "Docs";
enableFeatureFreezePing = true;

View File

@ -148,10 +148,10 @@ in
allowedUDPPorts = cfg.openPorts;
allowedTCPPorts = cfg.openPorts;
allowedUDPPortRanges = [
allowedUDPPortRanges = with config.services.coturn; [
{
from = cfg.minPort;
to = cfg.maxPort;
from = min-port;
to = max-port;
}
];
};

View File

@ -6,7 +6,7 @@ let
cfg = config.services.tailscale;
isNetworkd = config.networking.useNetworkd;
in {
meta.maintainers = with maintainers; [ mbaillie twitchyliquid64 mfrw ];
meta.maintainers = with maintainers; [ mbaillie mfrw ];
options.services.tailscale = {
enable = mkEnableOption "Tailscale client daemon";

View File

@ -62,13 +62,13 @@
stdenv.mkDerivation rec {
pname = "audacity";
version = "3.5.0";
version = "3.5.1";
src = fetchFromGitHub {
owner = "audacity";
repo = "audacity";
rev = "Audacity-${version}";
hash = "sha256-vJhCONoEC4Bdd1ZOLLobjNgLb/DT6auuMGk8L9lj6TU=";
hash = "sha256-wQ+K31TvDTVwDyVQ5nWgcneZ1cFxztmsbSXrDs33Uoc=";
};
postPatch = ''

View File

@ -22,6 +22,6 @@ buildGoModule rec {
description = "SQL language server written in Go";
mainProgram = "sqls";
license = licenses.mit;
maintainers = [ ];
maintainers = with maintainers; [ vinnymeller ];
};
}

View File

@ -19,7 +19,9 @@ LATEST_TAG_RAWFILE=${WORKDIR}/latest_tag.json
curl --silent -f ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \
https://api.github.com/repos/k3s-io/k3s/releases > ${LATEST_TAG_RAWFILE}
LATEST_TAG_NAME=$(jq 'map(.tag_name)' ${LATEST_TAG_RAWFILE} | \
LATEST_TAG_NAME=$(cat ${LATEST_TAG_RAWFILE} | \
jq -r 'map(select(.prerelease == false))' | \
jq 'map(.tag_name)' | \
grep -v -e rc -e engine | tail -n +2 | head -n -1 | sed 's|[", ]||g' | sort -rV | grep -E "^v1\.${MINOR_VERSION}\." | head -n1)
K3S_VERSION=$(echo ${LATEST_TAG_NAME} | sed 's/^v//')

View File

@ -17,6 +17,8 @@
, fetchFromGitHub
, buildFHSEnv
, glib-networking
, wrapGAppsHook
, gsettings-desktop-schemas
}:
let
am2r-run = buildFHSEnv {
@ -69,7 +71,9 @@ buildDotnetModule {
openssl
];
buildInputs = [ gtk3 ];
nativeBuildInputs = [ wrapGAppsHook ];
buildInputs = [ gtk3 gsettings-desktop-schemas glib-networking ];
patches = [ ./am2r-run-binary.patch ];
@ -78,7 +82,6 @@ buildDotnetModule {
postFixup = ''
wrapProgram $out/bin/AM2RLauncher.Gtk \
--prefix PATH : ${lib.makeBinPath [ am2r-run xdelta file openjdk patchelf ]} \
--prefix GIO_EXTRA_MODULES : ${glib-networking}/lib/gio/modules
mkdir -p $out/share/icons
install -Dm644 $src/AM2RLauncher/distribution/linux/AM2RLauncher.png $out/share/icons/AM2RLauncher.png

View File

@ -9,11 +9,11 @@
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "arc-browser";
version = "1.38.0-48670";
version = "1.40.0-49176";
src = fetchurl {
url = "https://releases.arc.net/release/Arc-${finalAttrs.version}.dmg";
hash = "sha256-6LJEIkr1NA8HHxbLWtd/OTlPPErh05UTjVhjuZVcmTg=";
hash = "sha256-SjdlMEhmO00ADWTFR4u9fHKWbbQRAC/UstXIoshgYuA=";
};
nativeBuildInputs = [ undmg ];

View File

@ -1,13 +1,13 @@
{ lib, stdenv, fetchurl, pkg-config, fltk13, portaudio, lame, libvorbis, libogg
, flac, libopus, libsamplerate, fdk_aac, dbus, openssl, curl }:
, flac, libopus, libsamplerate, fdk_aac, dbus, openssl, curl, portmidi }:
stdenv.mkDerivation (finalAttrs: {
pname = "butt";
version = "0.1.40";
version = "0.1.41";
src = fetchurl {
url = "https://danielnoethen.de/butt/release/${finalAttrs.version}/butt-${finalAttrs.version}.tar.gz";
hash = "sha256-wag177UIQ6YpBkJ5XQlxYtTdBFFNO5q+BLD/CiUkGoA=";
hash = "sha256-wTypjqd2PpmDSA8vScMLkAL44xE/WAccm747PS9ClVA=";
};
postPatch = ''
@ -31,6 +31,7 @@ stdenv.mkDerivation (finalAttrs: {
dbus
openssl
curl
portmidi
];
postInstall = ''
@ -45,5 +46,6 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ehmry ];
mainProgram = "butt";
platforms = lib.platforms.linux;
};
})

View File

@ -0,0 +1,36 @@
{ stdenv
, lib
, undmg
, fetchurl
}:
stdenv.mkDerivation rec {
pname = "Skim";
version = "1.7.2";
src = fetchurl {
name = "Skim-${version}.dmg";
url = "mirror://sourceforge/project/skim-app/Skim/Skim-${version}/Skim-${version}.dmg";
sha256 = "t/A3Bd7mQ8hFGdbpQou4ru9i5jX4HaYOXgMvfPAUEYc=";
};
nativeBuildInputs = [ undmg ];
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -R Skim.app $out/Applications
runHook postInstall
'';
meta = with lib; {
description = "Skim is a PDF reader and note-taker for OS X";
homepage = "https://skim-app.sourceforge.io/";
license = licenses.bsd0;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
mainProgram = "Skim.app";
maintainers = with maintainers; [ YvesStraten ];
platforms = platforms.darwin;
};
}

View File

@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation rec {
homepage = "https://jetbrains.com/mono/";
changelog = "https://github.com/JetBrains/JetBrainsMono/blob/v${version}/Changelog.md";
license = licenses.ofl;
maintainers = [ ];
maintainers = with maintainers; [ vinnymeller ];
platforms = platforms.all;
};
}

View File

@ -7,7 +7,6 @@ stdenv.mkDerivation rec {
src = fetchurl {
urls = [
"https://www.chiark.greenend.org.uk/~ian/adns/ftp/adns-${version}.tar.gz"
"ftp://ftp.chiark.greenend.org.uk/users/ian/adns/adns-${version}.tar.gz"
"mirror://gnu/adns/adns-${version}.tar.gz"
];
sha256 = "1pi0xl07pav4zm2jrbrfpv43s1r1q1y12awgak8k7q41m5jp4hpv";

View File

@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.freedesktop.org/wlroots/wlr-protocols";
license = licenses.mit; # See file headers
platforms = platforms.linux;
maintainers = with maintainers; [ twitchyliquid64 ];
maintainers = with maintainers; [ ];
};
}

View File

@ -151,6 +151,6 @@ buildPythonPackage rec {
homepage = "https://scrapy.org/";
changelog = "https://github.com/scrapy/scrapy/raw/${version}/docs/news.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ vinnymeller ];
};
}

View File

@ -328,11 +328,13 @@ let
CellBarcode = [ pkgs.zlib ];
cld3 = [ pkgs.protobuf ];
bnpmr = [ pkgs.gsl ];
caviarpd = [ pkgs.cargo ];
cairoDevice = [ pkgs.gtk2.dev ];
Cairo = with pkgs; [ libtiff libjpeg cairo.dev xorg.libXt.dev fontconfig.lib ];
Cardinal = [ pkgs.which ];
chebpol = [ pkgs.fftw.dev ];
ChemmineOB = [ pkgs.pkg-config ];
clarabel = [ pkgs.cargo ];
curl = [ pkgs.curl.dev ];
CytoML = [ pkgs.libxml2.dev ];
data_table = with pkgs; [ pkg-config zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp;
@ -357,7 +359,9 @@ let
gslnls = [ pkgs.gsl ];
gert = [ pkgs.libgit2 ];
haven = with pkgs; [ zlib.dev ];
hellorust = [ pkgs.cargo ];
h5vc = with pkgs; [ zlib.dev bzip2.dev xz.dev ];
yyjsonr = with pkgs; [ zlib.dev ];
highs = [ pkgs.which pkgs.cmake ];
rbedrock = [ pkgs.zlib.dev pkgs.which pkgs.cmake ];
HiCseg = [ pkgs.gsl ];
@ -441,6 +445,8 @@ let
clustermq = [ pkgs.zeromq ];
SAVE = with pkgs; [ zlib bzip2 icu xz pcre ];
salso = [ pkgs.cargo ];
ymd = [ pkgs.cargo ];
arcpbf = [ pkgs.cargo ];
sdcTable = with pkgs; [ gmp glpk ];
seewave = with pkgs; [ fftw.dev libsndfile.dev ];
seqinr = [ pkgs.zlib.dev ];
@ -531,6 +537,7 @@ let
textshaping = [ pkgs.pkg-config ];
ragg = [ pkgs.pkg-config ];
qqconf = [ pkgs.pkg-config ];
qspray = [ pkgs.pkg-config ];
vapour = [ pkgs.pkg-config ];
};
@ -548,6 +555,8 @@ let
bayesWatch = [ pkgs.boost.dev ];
clustermq = [ pkgs.pkg-config ];
coga = [ pkgs.gsl.dev ];
mBvs = [ pkgs.gsl.dev ];
rcontroll = [ pkgs.gsl.dev ];
deepSNV = with pkgs; [ xz.dev bzip2.dev zlib.dev ];
epialleleR = with pkgs; [ xz.dev bzip2.dev zlib.dev ];
gdalraster = with pkgs; [ gdal proj.dev sqlite.dev ];
@ -568,6 +577,7 @@ let
cairoDevice = [ pkgs.pkg-config ];
chebpol = [ pkgs.pkg-config ];
eds = [ pkgs.zlib.dev ];
pgenlibr = [ pkgs.zlib.dev ];
fftw = [ pkgs.pkg-config ];
gdtools = [ pkgs.pkg-config ];
archive = [ pkgs.libarchive];
@ -666,6 +676,7 @@ let
seqbias = with pkgs; [ zlib.dev bzip2.dev xz.dev ];
sparkwarc = [ pkgs.zlib.dev ];
RoBMA = [ pkgs.jags ];
RoBSA = [ pkgs.jags ];
pexm = [ pkgs.jags ];
rGEDI = with pkgs; [ libgeotiff.dev libaec zlib.dev hdf5.dev ];
rawrr = [ pkgs.mono ];
@ -697,6 +708,7 @@ let
PoissonMultinomial = [ pkgs.fftw.dev ];
rrd = [ pkgs.rrdtool ];
flowWorkspace = [ pkgs.zlib.dev ];
RITCH = [ pkgs.zlib.dev ];
RcppMeCab = [ pkgs.mecab ];
PING = [ pkgs.gsl ];
RcppAlgos = [ pkgs.gmp.dev ];
@ -710,7 +722,9 @@ let
ijtiff = [ pkgs.libtiff ];
ragg = with pkgs; [ freetype.dev libpng.dev libtiff.dev zlib.dev libjpeg.dev bzip2.dev ] ++ lib.optional stdenv.isDarwin lerc.dev;
qqconf = [ pkgs.fftw.dev ];
qspray = with pkgs; [ gmp.dev mpfr.dev ];
vapour = with pkgs; [ proj.dev gdal ];
MedianaDesigner = [ pkgs.zlib.dev ];
ChemmineOB = [ pkgs.eigen ];
};
@ -795,6 +809,7 @@ let
"likeLTD"
"logmult"
"loon"
"loon_ggplot"
"LS2Wstat"
"MareyMap"
"memgene"
@ -832,6 +847,7 @@ let
"RandomFields"
"rareNMtests"
"rAverage"
"rfviz"
"RclusTool"
"Rcmdr"
"RcmdrPlugin_coin"
@ -915,6 +931,8 @@ let
"connections"
"csodata"
"DiceView"
"facmodTS"
"margaret"
"MSnID"
"OmnipathR"
"precommit"
@ -937,6 +955,7 @@ let
"ACNE"
"APAlyzer"
"EstMix"
"Patterns"
"PECA"
"Quartet"
"ShinyQuickStarter"
@ -1104,6 +1123,10 @@ let
postPatch = "patchShebangs configure";
});
surtvep = old.surtvep.overrideAttrs (attrs: {
postPatch = "patchShebangs configure";
});
purrr = old.purrr.overrideAttrs (attrs: {
patchPhase = "patchShebangs configure";
});
@ -1116,6 +1139,11 @@ let
postPatch = "patchShebangs configure";
});
zoomerjoin = old.zoomerjoin.overrideAttrs (attrs: {
nativeBuildInputs = [ pkgs.cargo ] ++ attrs.nativeBuildInputs;
postPatch = "patchShebangs configure";
});
data_table = old.data_table.overrideAttrs (attrs: {
env = (attrs.env or { }) // {
NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -fopenmp";

View File

@ -1,30 +1,34 @@
{ lib, stdenv, fetchFromGitLab, autoreconfHook, libsamplerate, SDL2, SDL2_mixer, readline }:
{ lib, stdenv, fetchFromGitHub, gitUpdater, autoreconfHook, allegro, libsamplerate, libX11, libXext, SDL, SDL_mixer, SDL2, SDL2_mixer, readline }:
stdenv.mkDerivation rec {
pname = "1oom";
version = "1.0";
version = "1.8.1";
src = fetchFromGitLab {
owner = "KilgoreTroutMaskReplicant";
repo = pname;
rev = "v${version}";
sha256 = "sha256-+HwSykSyAGHtITVOu4nIG87kWwVxGyFXb/NRSjhWlvs=";
src = fetchFromGitHub {
owner = "1oom-fork";
repo = "1oom";
rev = "refs/tags/f${version}";
hash = "sha256-sBVcPR4+MDjyOLgrB4VcVy0cDyyG5MVY9vNhWwqAhBA=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libsamplerate SDL2 SDL2_mixer readline ];
buildInputs = [ allegro libsamplerate libX11 libXext SDL SDL_mixer SDL2 SDL2_mixer readline ];
outputs = [ "out" "doc" ];
postInstall = ''
install -d $doc/share/doc/${pname}
install -t $doc/share/doc/${pname} \
HACKING NEWS PHILOSOPHY README doc/*.txt
HACKING NEWS PHILOSOPHY README.md doc/*.txt
'';
passthru.updateScript = gitUpdater {
rev-prefix = "f";
};
meta = with lib; {
homepage = "https://kilgoretroutmaskreplicant.gitlab.io/plain-html/";
description = "Master of Orion (1993) game engine recreation";
homepage = "https://github.com/1oom-fork/1oom";
description = "Master of Orion (1993) game engine recreation; a more updated fork";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ];

View File

@ -65,6 +65,6 @@ buildGoModule {
description = "The node agent for Tailscale, a mesh VPN built on WireGuard";
license = licenses.bsd3;
mainProgram = "tailscale";
maintainers = with maintainers; [ mbaillie twitchyliquid64 jk mfrw ];
maintainers = with maintainers; [ mbaillie jk mfrw ];
};
}

View File

@ -32,6 +32,6 @@ rustPlatform.buildRustPackage rec {
description = "Make mechanical PCBs by combining shapes together";
homepage = "https://github.com/twitchyliquid64/maker-panel";
license = with licenses; [ mit ];
maintainers = with maintainers; [ twitchyliquid64 ];
maintainers = with maintainers; [ ];
};
}

View File

@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation rec {
homepage = "https://valentjn.github.io/ltex/";
description = "LSP language server for LanguageTool";
license = licenses.mpl20;
maintainers = [ ];
maintainers = with maintainers; [ vinnymeller ];
platforms = jre_headless.meta.platforms;
};
}

View File

@ -1,4 +1,11 @@
{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
python3,
opencc,
}:
stdenv.mkDerivation rec {
pname = "opencc";
@ -11,7 +18,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-N7nazA0xoQ2ewOGDiJg1vBBYMdF1/qiCfNjG5CFFbuk=";
};
nativeBuildInputs = [ cmake python3 ];
nativeBuildInputs =
[
cmake
python3
]
++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
opencc # opencc_dict
];
meta = with lib; {
homepage = "https://github.com/BYVoid/OpenCC";

View File

@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec {
description = "Simple app launcher for wayland written in rust";
homepage = "https://github.com/DorianRudolph/sirula";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ twitchyliquid64 ];
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}

View File

@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/Ferdi265/wl-mirror";
description = "A simple Wayland output mirror client";
license = licenses.gpl3;
maintainers = with maintainers; [ synthetica twitchyliquid64 ];
maintainers = with maintainers; [ synthetica ];
platforms = platforms.linux;
};
}