Merge master into staging-next

This commit is contained in:
github-actions[bot] 2024-06-14 06:01:16 +00:00 committed by GitHub
commit 39f9a638f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 36 additions and 39 deletions

View File

@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "gh"; pname = "gh";
version = "2.50.0"; version = "2.51.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cli"; owner = "cli";
repo = "cli"; repo = "cli";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-/h3azuMRGqsQrLW+NwqAunQNNqXybZ1CXC8FT4D+sCY="; hash = "sha256-xd7IZSOgukEyngxHwsOrHW3ifEMpm1OfXoW3/fvVq3I=";
}; };
vendorHash = "sha256-Y8F9tetkJSI0LyO6wTHR5d8aRP1VOp3/EvtPKDDbqpM="; vendorHash = "sha256-0NKfDSDV/hyQfgkhHe0E9xu7A9hz4JAT5uF/Q2ipEwg=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@ -13,13 +13,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "doublecmd"; pname = "doublecmd";
version = "1.1.14"; version = "1.1.15";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "doublecmd"; owner = "doublecmd";
repo = "doublecmd"; repo = "doublecmd";
rev = "v${finalAttrs.version}"; rev = "v${finalAttrs.version}";
hash = "sha256-2ZFLQoz25q3uwjQkogSyuLxSNJQ6Gh553Yj4zl70jno="; hash = "sha256-GFjswA0COhZCMY6KMtthGSA16sKwScXm7x+CjZ0hXl8=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -17,16 +17,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "eza"; pname = "eza";
version = "0.18.17"; version = "0.18.18";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "eza-community"; owner = "eza-community";
repo = "eza"; repo = "eza";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-ig1sLcWEwzF8PnqDoeC103kC6l6SINtZQdJcLiTe5fw="; hash = "sha256-MBu5zwidjIWs9z6DXYNGsHIwic3ipScAw6TZjSvEvJk=";
}; };
cargoHash = "sha256-C1xaSdM3mtIk8moOP8drDpdFDs9pYk+ChyI5il5RaqE="; cargoHash = "sha256-TsW3Rl4EKvrPPhEYzp0K3lBkDYJiehctT/FnkL3yazU=";
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ]; nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
buildInputs = [ zlib ] buildInputs = [ zlib ]

View File

@ -1,27 +1,24 @@
{ lib {
, stdenvNoCC lib,
, fetchFromGitHub stdenvNoCC,
, gnome-themes-extra fetchFromGitHub,
, gtk-engine-murrine gnome-themes-extra,
gtk-engine-murrine,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "gruvbox-gtk-theme"; pname = "gruvbox-gtk-theme";
version = "unstable-2023-05-28"; version = "0-unstable-2024-06-12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Fausto-Korpsvart"; owner = "Fausto-Korpsvart";
repo = "Gruvbox-GTK-Theme"; repo = "Gruvbox-GTK-Theme";
rev = "c0b7fb501938241a3b6b5734f8cb1f0982edc6b4"; rev = "1a0f6672283e1846ec307addd4647f2daad29402";
hash = "sha256-Y+6HuWaVkNqlYc+w5wLkS2LpKcDtpeOpdHnqBmShm5Q="; hash = "sha256-bbL4bHAdkmReogUQML9sMpSallZ7wrgbK3R64xiAYRo=";
}; };
propagatedUserEnvPkgs = [ propagatedUserEnvPkgs = [ gtk-engine-murrine ];
gtk-engine-murrine
];
buildInputs = [ buildInputs = [ gnome-themes-extra ];
gnome-themes-extra
];
dontBuild = true; dontBuild = true;
@ -32,11 +29,14 @@ stdenvNoCC.mkDerivation {
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = {
description = "Gtk theme based on the Gruvbox colour pallete"; description = "Gtk theme based on the Gruvbox colour pallete";
homepage = "https://www.pling.com/p/1681313/"; homepage = "https://www.pling.com/p/1681313/";
license = licenses.gpl3Only; license = lib.licenses.gpl3Only;
platforms = platforms.unix; platforms = lib.platforms.unix;
maintainers = [ maintainers.math-42 ]; maintainers = with lib.maintainers; [
luftmensch-luftmensch
math-42
];
}; };
} }

View File

@ -27,14 +27,14 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "xemu"; pname = "xemu";
version = "0.7.122"; version = "0.7.123";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xemu-project"; owner = "xemu-project";
repo = "xemu"; repo = "xemu";
rev = "v${finalAttrs.version}"; rev = "v${finalAttrs.version}";
fetchSubmodules = true; fetchSubmodules = true;
hash = "sha256-TxtkLdUSIbDu9uqPq4s64HtXFyT3ntN8Su9bEGPS3f0="; hash = "sha256-8Nfy6x3+8n1AlXnZmbISZrncnU04iaQPx69e46XgxUU=";
}; };
nativeBuildInputs = nativeBuildInputs =

View File

@ -2,11 +2,11 @@
buildGraalvmNativeImage rec { buildGraalvmNativeImage rec {
pname = "yamlscript"; pname = "yamlscript";
version = "0.1.59"; version = "0.1.61";
src = fetchurl { src = fetchurl {
url = "https://github.com/yaml/yamlscript/releases/download/${version}/yamlscript.cli-${version}-standalone.jar"; url = "https://github.com/yaml/yamlscript/releases/download/${version}/yamlscript.cli-${version}-standalone.jar";
hash = "sha256-I5Z9QB8ZmTyeMs/WxUhJZM65VpUIx+t7QKzCRuRdRG4="; hash = "sha256-NuZxIuj7N7zKBOaBPn8g/cKoRmNMkpH75YMHBjFFM8g=";
}; };
executable = "ys"; executable = "ys";

View File

@ -4,26 +4,23 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-apron"; pname = "ocaml${ocaml.version}-apron";
version = "0.9.14"; version = "0.9.15";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "antoinemine"; owner = "antoinemine";
repo = "apron"; repo = "apron";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-e8bSf0FPB6E3MFHHoSrE0x/6nrUStO+gOKxJ4LDHBi0="; hash = "sha256-gHLCurydxX1pS66DTAWUJGl9Yqu9RWRjkZh6lXzM7YY=";
}; };
nativeBuildInputs = [ ocaml findlib perl ]; nativeBuildInputs = [ ocaml findlib perl ];
buildInputs = [ gmp mpfr ppl camlidl flint pplite ]; buildInputs = [ gmp mpfr ppl camlidl flint pplite ];
propagatedBuildInputs = [ mlgmpidl ]; propagatedBuildInputs = [ mlgmpidl ];
# TODO: Doesn't produce the library correctly if true
strictDeps = false;
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" ];
configurePhase = '' configurePhase = ''
runHook preConfigure runHook preConfigure
./configure -prefix $out ${lib.optionalString stdenv.isDarwin "-no-strip"} ./configure -prefix $out
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs
runHook postConfigure runHook postConfigure
''; '';

View File

@ -16,14 +16,14 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "nixpkgs-review"; pname = "nixpkgs-review";
version = "2.10.4"; version = "2.10.5";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Mic92"; owner = "Mic92";
repo = "nixpkgs-review"; repo = "nixpkgs-review";
rev = version; rev = "refs/tags/${version}";
hash = "sha256-+4T6Mm4YfH0wWlkNYS03H9Z9oNlYQnVUncvWGA0CKIQ="; hash = "sha256-dRTKE8gkV298ZmMokyy3Ufer/Lp1GQYdEhIBoLhloEQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [