Updates
All checks were successful
Nix Build / build-nixos (push) Successful in 5m59s

This commit is contained in:
soraefir 2024-08-18 10:36:21 +02:00
parent 38fd971314
commit 692b613613
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
4 changed files with 1530 additions and 775 deletions

View File

@ -1,10 +1,10 @@
{ final, prev, ... }:
prev.yarn-berry.overrideAttrs (old: rec {
version = "3.6.3";
version = "4.4.0";
src = prev.fetchFromGitHub {
owner = "yarnpkg";
repo = "berry";
rev = "@yarnpkg/cli/${version}";
hash = "sha256-5QEnFalOEMs1bKYDYpFGnF1YwiGuW3ZxstyJAjz1/KQ=";
hash = "sha256-5QEnFalOEMs1bKYDYaFGnFaYwiGuW3ZxstyJAjz1/KQ=";
};
})

File diff suppressed because it is too large Load Diff

View File

@ -3,19 +3,19 @@
rustPlatform.buildRustPackage rec {
pname = "amdgpu_top";
version = "0.3.1";
version = "0.9.0";
src = fetchFromGitHub {
owner = "Umio-Yasuno";
repo = pname;
rev = "v${version}";
hash = "sha256-bkrXm3lXJr+sZ09GeVHgfIp8JO3a/Ejrsm1Cm4eY4IU=";
hash = "sha256-FUmOoVHDLb86cDA8b9t+wJkUSgY8Lo+abO3F0UBmi+A=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"libdrm_amdgpu_sys-0.2.2" =
"sha256-2QXT/6octEzokW8+0mHx02R8qQ3kCBDxZT4yyfDkM5A=";
"libdrm_amdgpu_sys-0.7.4" =
"sha256-re38Ci4CnVmVzGwk3uB3htFQZ1j4W6+pXw4NbV26dEU=";
};
};

View File

@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, qt6 }:
stdenv.mkDerivation rec {
pname = "simc";
version = "ae04662fca7cad8bf218cd8e43ab05631caad758";
version = "b1fd592079d1a673ab53ea96d699a6e56424b0ee";
src = fetchFromGitHub rec {
owner = "simulationcraft";
repo = pname;
rev = version;
hash = "sha256-mTo6YTgZMpfyWvdU1JEEmfmBjJlZwAgja1iliOem7mM=";
hash = "sha256-RPUCe7aoAYSNj9jv8HN7qhhxRIMmdCfhmUcr72VaHzg==";
};
nativeBuildInputs =