Merge master into staging-next

This commit is contained in:
nixpkgs-ci[bot]
2025-05-30 00:17:17 +00:00
committed by GitHub
1023 changed files with 2516 additions and 2597 deletions
+4
View File
@@ -795,6 +795,10 @@ Additionally, the following optional arguments can be given:
: Clone the entire repository as opposing to just creating a shallow clone.
This implies `leaveDotGit`.
*`fetchTags`* (Boolean)
: Whether to fetch all tags from the remote repository. This is useful when the build process needs to run `git describe` or other commands that require tag information to be available. This parameter implies `leaveDotGit`, as tags are stored in the `.git` directory.
*`sparseCheckout`* (List of String)
: Prevent git from fetching unnecessary blobs from server.
@@ -14,6 +14,9 @@
- [FileBrowser](https://filebrowser.org/), a web application for managing and sharing files. Available as [services.filebrowser](#opt-services.filebrowser.enable).
- [LACT](https://github.com/ilya-zlobintsev/LACT), a GPU monitoring and configuration tool, can now be enabled through [services.lact.enable](#opt-services.lact.enable).
Note that for LACT to work properly on AMD GPU systems, you need to enable [hardware.amdgpu.overdrive.enable](#opt-hardware.amdgpu.overdrive.enable).
- [SuiteNumérique Docs](https://github.com/suitenumerique/docs), a collaborative note taking, wiki and documentation web platform and alternative to Notion or Outline. Available as [services.lasuite-docs](#opt-services.lasuite-docs.enable).
## Backward Incompatibilities {#sec-release-25.11-incompatibilities}
+1
View File
@@ -646,6 +646,7 @@
./services/hardware/kanata.nix
./services/hardware/keyd.nix
./services/hardware/kmonad.nix
./services/hardware/lact.nix
./services/hardware/lcd.nix
./services/hardware/libinput.nix
./services/hardware/lirc.nix
+39
View File
@@ -0,0 +1,39 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.lact;
in
{
meta.maintainers = [ lib.maintainers.johnrtitor ];
options.services.lact = {
enable = lib.mkEnableOption null // {
description = ''
Whether to enable LACT, a tool for monitoring, configuring and overclocking GPUs.
::: {.note}
If you are on an AMD GPU, it is recommended to enable overdrive mode by using
`hardware.amdgpu.overdrive.enable = true;` in your configuration.
See [LACT wiki](https://github.com/ilya-zlobintsev/LACT/wiki/Overclocking-(AMD)) for more information.
:::
'';
};
package = lib.mkPackageOption pkgs "lact" { };
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
systemd.packages = [ cfg.package ];
systemd.services.lactd = {
description = "LACT GPU Control Daemon";
wantedBy = [ "multi-user.target" ];
};
};
}
+1
View File
@@ -714,6 +714,7 @@ in
kthxbye = runTest ./kthxbye.nix;
kubernetes = handleTestOn [ "x86_64-linux" ] ./kubernetes { };
kubo = import ./kubo { inherit recurseIntoAttrs runTest; };
lact = runTest ./lact.nix;
ladybird = runTest ./ladybird.nix;
languagetool = runTest ./languagetool.nix;
lanraragi = runTest ./lanraragi.nix;
+18
View File
@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
name = "lact";
meta = {
inherit (pkgs.lact.meta) maintainers;
};
nodes.machine =
{ config, pkgs, ... }:
{
services.lact.enable = true;
};
testScript = ''
machine.wait_for_unit("lactd.service")
machine.wait_for_file("/run/lactd.sock")
'';
}
@@ -958,13 +958,13 @@
"vendorHash": "sha256-Z8ARwVWhep9qrUpl/B7Gj9Aey07Wtwn1XiLnCirV11M="
},
"openstack": {
"hash": "sha256-Qx4OQzVjhrlILrl5htROVvAzaHQ4AmdkBqpKP17mrBc=",
"hash": "sha256-7oQ4O76yEF8QKFUHTrwchbShtiG0LAp67MqfIcDLU7o=",
"homepage": "https://registry.terraform.io/providers/terraform-provider-openstack/openstack",
"owner": "terraform-provider-openstack",
"repo": "terraform-provider-openstack",
"rev": "v3.0.0",
"rev": "v3.1.0",
"spdx": "MPL-2.0",
"vendorHash": "sha256-0Atbzx1DjInPMa1lNxyNKfNMILjN4S814TlIAQeTfdI="
"vendorHash": "sha256-HQVKblAm8H0Q5pbJdIVSMc5FLi3O9TV475yass6BraY="
},
"opentelekomcloud": {
"hash": "sha256-nCtltzYV9yDYEkAuOJVdBlk11nSpdQtk/zlKEn81srs=",
@@ -10,15 +10,15 @@ let
if stdenv.hostPlatform.isLinux then
{
stable = "0.0.95";
ptb = "0.0.143";
canary = "0.0.678";
ptb = "0.0.144";
canary = "0.0.687";
development = "0.0.75";
}
else
{
stable = "0.0.345";
ptb = "0.0.173";
canary = "0.0.784";
stable = "0.0.347";
ptb = "0.0.174";
canary = "0.0.793";
development = "0.0.88";
};
version = versions.${branch};
@@ -30,11 +30,11 @@ let
};
ptb = fetchurl {
url = "https://ptb.dl2.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz";
hash = "sha256-Ki6+o+8/yQjc6kxKS7Re2gBbpfMi3m02L69muqsNm04=";
hash = "sha256-URTBQ2YzkC8p7524RqR1OCqI3WkvtsClvd91RIWEQqU=";
};
canary = fetchurl {
url = "https://canary.dl2.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz";
hash = "sha256-Z+pTuR5xZfbmucdx9aBti5diNp5oCpP1mu60mq7oPB8=";
hash = "sha256-OaDN+Qklxieo9xlP8qVeCwWzPBe6bLXoFUkMOFCoqPg=";
};
development = fetchurl {
url = "https://development.dl2.discordapp.net/apps/linux/${version}/discord-development-${version}.tar.gz";
@@ -44,15 +44,15 @@ let
x86_64-darwin = {
stable = fetchurl {
url = "https://stable.dl2.discordapp.net/apps/osx/${version}/Discord.dmg";
hash = "sha256-uyMcHV8dbCwKFQWy/s77KfEHKc+NiAq1X9Q0ih1ELLk=";
hash = "sha256-X9c5ruehxEd8FIdaQigiz7WGnh851BMqdo7Cz1wEb7Q=";
};
ptb = fetchurl {
url = "https://ptb.dl2.discordapp.net/apps/osx/${version}/DiscordPTB.dmg";
hash = "sha256-Fmh3EGjF3Xb2Vv39WEchrseo2t+4y1k+nLdb43GhJXI=";
hash = "sha256-/suI1rVJZE1z8wLfiD65p7IdBJsJnz8zX1A2xmMMDnc=";
};
canary = fetchurl {
url = "https://canary.dl2.discordapp.net/apps/osx/${version}/DiscordCanary.dmg";
hash = "sha256-N3OdQZiLpkkaxr4yTfszHPj9/zfeVlUup5r2GB8OCMg=";
hash = "sha256-/5jSp6dQiElzofpV7bRNPyUqRgq3Adzb8r40Nd8+Fn0=";
};
development = fetchurl {
url = "https://development.dl2.discordapp.net/apps/osx/${version}/DiscordDevelopment.dmg";
+1
View File
@@ -13,6 +13,7 @@ $SHELL $fetcher --builder --url "$url" --out "$out" --rev "$rev" --name "$name"
${fetchLFS:+--fetch-lfs} \
${deepClone:+--deepClone} \
${fetchSubmodules:+--fetch-submodules} \
${fetchTags:+--fetch-tags} \
${sparseCheckout:+--sparse-checkout "$sparseCheckout"} \
${nonConeMode:+--non-cone-mode} \
${branchName:+--branch-name "$branchName"}
+5 -1
View File
@@ -28,7 +28,7 @@ lib.makeOverridable (
url,
tag ? null,
rev ? null,
leaveDotGit ? deepClone,
leaveDotGit ? deepClone || fetchTags,
outputHash ? lib.fakeHash,
outputHashAlgo ? null,
fetchSubmodules ? true,
@@ -55,6 +55,8 @@ lib.makeOverridable (
netrcImpureEnvVars ? [ ],
meta ? { },
allowedRequisites ? null,
# fetch all tags after tree (useful for git describe)
fetchTags ? false,
}:
/*
@@ -81,6 +83,7 @@ lib.makeOverridable (
*/
assert nonConeMode -> (sparseCheckout != [ ]);
assert fetchTags -> leaveDotGit;
let
revWithTag =
@@ -136,6 +139,7 @@ lib.makeOverridable (
nonConeMode
preFetch
postFetch
fetchTags
;
rev = revWithTag;
@@ -11,6 +11,7 @@ leaveDotGit=$NIX_PREFETCH_GIT_LEAVE_DOT_GIT
fetchSubmodules=
fetchLFS=
builder=
fetchTags=
branchName=$NIX_PREFETCH_GIT_BRANCH_NAME
# ENV params
@@ -56,6 +57,7 @@ Options:
--leave-dotGit Keep the .git directories.
--fetch-lfs Fetch git Large File Storage (LFS) files.
--fetch-submodules Fetch submodules.
--fetch-tags Fetch all tags (useful for git describe).
--builder Clone as fetchgit does, but url, rev, and out option are mandatory.
--quiet Only print the final json summary.
"
@@ -86,6 +88,7 @@ for arg; do
--leave-dotGit) leaveDotGit=true;;
--fetch-lfs) fetchLFS=true;;
--fetch-submodules) fetchSubmodules=true;;
--fetch-tags) fetchTags=true;;
--builder) builder=true;;
-h|--help) usage; exit;;
*)
@@ -234,6 +237,12 @@ clone(){
exit 1
)
# Fetch all tags if requested
if test -n "$fetchTags"; then
echo "fetching all tags..." >&2
clean_git fetch origin 'refs/tags/*:refs/tags/*' || echo "warning: failed to fetch some tags" >&2
fi
# Checkout linked sources.
if test -n "$fetchSubmodules"; then
init_submodules
@@ -403,6 +412,7 @@ print_results() {
"fetchLFS": $([[ -n "$fetchLFS" ]] && echo true || echo false),
"fetchSubmodules": $([[ -n "$fetchSubmodules" ]] && echo true || echo false),
"deepClone": $([[ -n "$deepClone" ]] && echo true || echo false),
"fetchTags": $([[ -n "$fetchTags" ]] && echo true || echo false),
"leaveDotGit": $([[ -n "$leaveDotGit" ]] && echo true || echo false)
}
EOF
+12
View File
@@ -83,4 +83,16 @@
rev = "v3.0.14";
sha256 = "sha256-bd0Lx75Gd1pcBJtwz5WGki7XoYSpqhinCT3a77wpY2c=";
};
fetchTags = testers.invalidateFetcherByDrvHash fetchgit {
name = "fetchgit-fetch-tags-test";
url = "https://github.com/NixOS/nix";
rev = "9d9dbe6ed05854e03811c361a3380e09183f4f4a";
fetchTags = true;
leaveDotGit = true;
sha256 = "sha256-2vfZnYjZlnC8ODz6B6aOqAqtb1Wbjojnn/5TmzwUrmo=";
postFetch = ''
cd $out && git describe --tags --always > describe-output.txt 2>&1 || echo "git describe failed" > describe-output.txt
'';
};
}
+1 -1
View File
@@ -12,7 +12,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "aaronjanse";
repo = pname;
repo = "3mux";
rev = "v${version}";
sha256 = "sha256-QT4QXTlJf2NfTqXE4GF759EoW6Ri12lxDyodyEFc+ag=";
};
+1 -1
View File
@@ -26,7 +26,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "divVerent";
repo = pname;
repo = "aaaaxy";
rev = "v${version}";
hash = "sha256-4iL3+GeyOZoZN8IXo0jjSq3hYHKBTpytk8owXMdfACo=";
fetchSubmodules = true;
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "slok";
repo = pname;
repo = "agebox";
rev = "v${version}";
hash = "sha256-/FTNvGV7PsJmpSU1dI/kjfiY5G7shomvLd3bvFqORfg=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "gofireflyio";
repo = pname;
repo = "aiac";
rev = "v${version}";
hash = "sha256-Lk3Bmzg1owkIWzz7jgq1YpdPyRzyZ7aNoWPIU5aWzu0=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "blark";
repo = pname;
repo = "aiodnsbrute";
tag = "v${version}";
hash = "sha256-cEpk71VoQJZfKeAZummkk7yjtXKSMndgo0VleYiMlWE=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "Guitarbum722";
repo = pname;
repo = "align";
rev = "v${version}";
sha256 = "17gs3417633z71kc6l5zqg4b3rjhpn2v8qs8rnfrk4nbwzz4nrq3";
};
+3 -12
View File
@@ -10,26 +10,17 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "alistral";
version = "0.5.8";
version = "0.5.10";
src = fetchFromGitHub {
owner = "RustyNova016";
repo = "Alistral";
tag = "v${finalAttrs.version}";
hash = "sha256-LSuNVfGus9kO1g4EfVCw6yWxudvYqBnM5mpJWH7MBCs=";
hash = "sha256-O19Btz6jLJJnCbAusRHKfUa6II8mofzifW+cbPOaHVI=";
};
# remove if updating to rust 1.85
postPatch = ''
substituteInPlace Cargo.toml \
--replace-fail "[package]" ''$'cargo-features = ["edition2024"]\n[package]'\
--replace-fail 'rust-version = "1.85.0"' ""
'';
useFetchCargoVendor = true;
cargoHash = "sha256-lq+0R5g4MwVm8ESjKpz+aymjpqcaAE856XnBtYXYs8A=";
env.RUSTC_BOOTSTRAP = 1;
cargoHash = "sha256-zQvPgigUQW9dpyLe7fgW8i9I4nm38bQKDLwezeSYx9Q=";
nativeBuildInputs = [
pkg-config
@@ -14,7 +14,7 @@ let
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
repo = "amazon-qldb-shell";
rev = "v${version}";
sha256 = "sha256-aXScqJ1LijMSAy9YkS5QyXtTqxd19lLt3BbyVXlbw8o=";
};
+1 -1
View File
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
repo = "amber";
tag = "v${version}";
sha256 = "sha256-q0o2PQngbDLumck27V0bIiB35zesn55Y+MwK2GjNVWo=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "bdcht";
repo = pname;
repo = "amoco";
rev = "v${version}";
hash = "sha256-3+1ssFyU7SKFJgDYBQY0kVjmTHOD71D2AjnH+4bfLXo=";
};
+3 -3
View File
@@ -17,7 +17,7 @@ python3Packages.buildPythonApplication {
src = fetchFromGitLab {
owner = "franksh";
repo = pname;
repo = "amphetype";
rev = "v${version}";
hash = "sha256-pve2f+XMfFokMCtW3KdeOJ9Ey330Gwv/dk1+WBtrBEQ=";
};
@@ -48,14 +48,14 @@ python3Packages.buildPythonApplication {
desktopItems = [
(makeDesktopItem {
name = pname;
name = "amphetype";
desktopName = "Amphetype";
genericName = "Typing Practice";
categories = [
"Education"
"Qt"
];
exec = pname;
exec = "amphetype";
comment = description;
})
];
+1 -1
View File
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "scarvalhojr";
repo = pname;
repo = "aoc-cli";
rev = version;
hash = "sha256-UdeCKhEWr1BjQ6OMLP19OLWPlvvP7FGAO+mi+bQUPQA=";
};
+1 -1
View File
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitLab {
domain = "gitlab.nic.cz";
owner = "packaging";
repo = pname;
repo = "apkg";
rev = "v${version}";
hash = "sha256-VQNUzbWIDo/cbCdtx8JxN5UUMBW3mQ2B42In4b3AA+A=";
};
+2 -2
View File
@@ -26,7 +26,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "jollheef";
repo = pname;
repo = "appvm";
tag = "v${version}";
sha256 = "sha256-n+YputGiNWSOYbwes/rjz0h3RWZONDTc8+LDc0La/KU=";
};
@@ -47,7 +47,7 @@ buildGoModule rec {
meta = {
description = "Nix-based app VMs";
homepage = "https://code.dumpstack.io/tools/${pname}";
homepage = "https://code.dumpstack.io/tools/appvm";
maintainers = with lib.maintainers; [
dump_stack
cab404
+1 -1
View File
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "jdwhite";
repo = pname;
repo = "aquosctl";
rev = "b5e48d9ef848188b97dfb24bfcc99d5196cab5f6";
hash = "sha256-FA3LR58KMG5RzSxxnOkVw1+inM/gMGPtw5+JQwSHBYs=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "mholt";
repo = pname;
repo = "archiver";
rev = "v${version}";
hash = "sha256-l9exOq8QF3WSQ/+WQr0NfPeRQ/R6VQwfT+YS76BBwd8=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "arduino";
repo = pname;
repo = "arduinoOTA";
rev = version;
hash = "sha256-HaNMkeV/PDEotYp8+rUKFaBxGbZO8qA99Yp2sa6glz8=";
};
@@ -12,7 +12,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "argoproj-labs";
repo = pname;
repo = "argocd-vault-plugin";
rev = "v${version}";
hash = "sha256-rWNR4GVivuEprdX/xhwk/9SReeJ19UWDWx8Bf8z6CTI=";
};
+3 -3
View File
@@ -8,7 +8,7 @@
pcsclite,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "aribb25";
# FIXME: change the rev for fetchFromGitLab in next release
version = "0.2.7";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = pname;
repo = "aribb25";
# rev = version; FIXME: uncomment in next release
rev = "c14938692b313b5ba953543fd94fd1cad0eeef18"; # 0.2.7 with build fixes
sha256 = "1kb9crfqib0npiyjk4zb63zqlzbhqm35nz8nafsvdjd71qbd2amp";
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
patches =
let
url = commit: "https://code.videolan.org/videolan/${pname}/-/commit/${commit}.diff";
url = commit: "https://code.videolan.org/videolan/aribb25/-/commit/${commit}.diff";
in
[
(fetchpatch {
+6 -6
View File
@@ -62,8 +62,8 @@ stdenv.mkDerivation rec {
version = "3.9.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
owner = "arrayfire";
repo = "arrayfire";
rev = "v3.9.0";
hash = "sha256-80fxdkaeAQ5u0X/UGPaI/900cdkZ/vXNcOn5tkZ+C3Y=";
};
@@ -74,25 +74,25 @@ stdenv.mkDerivation rec {
#
# This can be removed once ArrayFire upstream their changes.
clfft = fetchFromGitHub {
owner = pname;
owner = "arrayfire";
repo = "clfft";
rev = "760096b37dcc4f18ccd1aac53f3501a83b83449c";
sha256 = "sha256-vJo1YfC2AJIbbRj/zTfcOUmi0Oj9v64NfA9MfK8ecoY=";
};
glad = fetchFromGitHub {
owner = pname;
owner = "arrayfire";
repo = "glad";
rev = "ef8c5508e72456b714820c98e034d9a55b970650";
sha256 = "sha256-u9Vec7XLhE3xW9vzM7uuf+b18wZsh/VMtGbB6nMVlno=";
};
threads = fetchFromGitHub {
owner = pname;
owner = "arrayfire";
repo = "threads";
rev = "4d4a4f0384d1ac2f25b2c4fc1d57b9e25f4d6818";
sha256 = "sha256-qqsT9woJDtQvzuV323OYXm68pExygYs/+zZNmg2sN34=";
};
test-data = fetchFromGitHub {
owner = pname;
owner = "arrayfire";
repo = "arrayfire-data";
rev = "a5f533d7b864a4d8f0dd7c9aaad5ff06018c4867";
sha256 = "sha256-AWzhsrDXyZrQN2bd0Ng/XlE8v02x7QWTiFTyaAuRXSw=";
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "guptarohit";
repo = pname;
repo = "asciigraph";
rev = "v${version}";
sha256 = "sha256-+4aGkumO42cloHWV8qEEJ5bj8TTdtfXTWGFCgCRE4Mg=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "Nordix";
repo = pname;
repo = "assign-lb-ip";
rev = "v${version}";
sha256 = "sha256-Sfi58wcX61HNCmlDoparTqnfsuxu6barSnV0uYlC+ng=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromSourcehut {
owner = "~julienxx";
repo = pname;
repo = "asuka";
rev = version;
sha256 = "sha256-+rj6P3ejc4Qb/uqbf3N9MqyqDT7yg9JFE0yfW/uzd6M=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "swimlane";
repo = pname;
repo = "atomic-operator";
rev = version;
hash = "sha256-DyNqu3vndyLkmfybCfTbgxk3t/ALg7IAkAMg4kBkH7Q=";
};
+1 -1
View File
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "wez";
repo = pname;
repo = "atomicparsley";
rev = version;
sha256 = "sha256-VhrOMpGNMkNNYjcfCqlHI8gdApWr1ThtcxDwQ6gyV/g=";
};
+1 -1
View File
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "Varbin";
repo = pname;
repo = "ausweiskopie";
tag = "v${version}";
hash = "sha256-axy/cI5n2uvMKZ2Fkb0seFMRBKv6rpU01kgKSiQ10jE=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "hahwul";
repo = pname;
repo = "authz0";
rev = "v${version}";
hash = "sha256-NrArxuhzd57NIdM4d9p/wfCB1e6l83pV+cjjCgZ9YtM=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "huacnlee";
repo = pname;
repo = "autocorrect";
rev = "v${version}";
sha256 = "sha256-fwq+Q2GpPXWfIQjfSACBjdyjrmYwVKSSZxCy3+NIKNI=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "cupcakearmy";
repo = pname;
repo = "autorestic";
rev = "v${version}";
sha256 = "sha256-rladzcW6l5eR6ICj4kKd4e2R9vRIV/1enCzHLFdQDlk=";
};
+1 -1
View File
@@ -14,7 +14,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "languitar";
repo = pname;
repo = "autosuspend";
tag = "v${version}";
hash = "sha256-of2b5K4ccONPGZfUwEIoFs86xLM2aLCV8tVGxVqykiQ=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "herrjulz";
repo = pname;
repo = "aviator";
rev = "v${version}";
sha256 = "sha256-Oa4z8n+q7LKWMnwk+xj9UunzOa3ChaPBCTo828yYJGQ=";
};
+1 -1
View File
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
repo = "aws-c-io";
rev = "v${version}";
hash = "sha256-/pG/+MHAu/TYTtY/RQrr1U1ev2FZ1p/O8kIRUDDOcvQ=";
};
+2 -2
View File
@@ -13,7 +13,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "xen0l";
repo = pname;
repo = "aws-gate";
rev = version;
hash = "sha256-9w2jP4s1HXf1gYiXX05Dt2iXt0bR0U48yc8h9T5M+EQ=";
};
@@ -52,7 +52,7 @@ python3Packages.buildPythonApplication rec {
'';
checkPhase = ''
$out/bin/${pname} --version
$out/bin/aws-gate --version
'';
meta = with lib; {
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
repo = "aws-iam-authenticator";
tag = "v${version}";
hash = "sha256-ZoK6GYAGNIRNzKAn1m5SaytBwEpufqDBWo2oJB4YA8c=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "synfinatic";
repo = pname;
repo = "aws-sso-cli";
rev = "v${version}";
hash = "sha256-hzX5gqr8tJk9EtP3ophbJ5m3rb92ZOs9UuDVTvxFcpI=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "jaxxstorm";
repo = pname;
repo = "aws-sso-creds";
rev = "v${version}";
sha256 = "sha256-QYE+HvvBEWPxopVP8QMqb4lNRyAtVDewuiWzja9XdM4=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "99designs";
repo = pname;
repo = "aws-vault";
rev = "v${version}";
hash = "sha256-Qs4vxFgehWQYYECBGBSU8YI/BHLwOQUO5wBlNEUzD7c=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "jorgebastida";
repo = pname;
repo = "awslogs";
rev = version;
sha256 = "sha256-o6xZqwlqAy01P+TZ0rB5rpEddWNUBzzHp7/cycpcwes=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "jckuester";
repo = pname;
repo = "awsls";
rev = "v${version}";
sha256 = "sha256-iy9tohmVUtNXYVfe6pZ+pbbLlcK6Fu1GgzTWMD+3xP0=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "jckuester";
repo = pname;
repo = "awsrm";
rev = "v${version}";
sha256 = "sha256-KAujqYDtZbCBRO5WK9b9mxqe84ZllbBoO2tLnDH/bdo=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "jckuester";
repo = pname;
repo = "awsweeper";
rev = "v${version}";
sha256 = "sha256-5D/4Z8ADlA+4+2EINmP5OfX5exzhfbq2TydPRlJDA6Y=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "controlplaneio";
repo = pname;
repo = "badrobot";
rev = "v${version}";
sha256 = "sha256-U3b5Xw+GjnAEXteivztHdcAcXx7DYtgaUbW5oax0mIk=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "bazelbuild";
repo = pname;
repo = "bazel-gazelle";
rev = "v${version}";
hash = "sha256-jj2mAGzz5BOim008LNRH0tVLbJy/mNodsTENMVbjUbk=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "buchgr";
repo = pname;
repo = "bazel-remote";
rev = "v${version}";
hash = "sha256-PjhLybiZoq7Uies2bWdlLKAbKcG3+AQZ55Qp706u7hc=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "bazelbuild";
repo = pname;
repo = "bazelisk";
rev = "v${version}";
sha256 = "sha256-1/J/Y2NlIghxQS/5CnGX+2z+glOeOZVEgSE4KWft9Zw=";
};
+1 -1
View File
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
repo = "bctoolbox";
rev = version;
hash = "sha256-OwwSGzMFwR2ajUUgAy7ea/Q2pWxn3DO72W7ukcjBJnU=";
};
+1 -1
View File
@@ -39,7 +39,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = pname;
repo = "berglas";
rev = "v${version}";
sha256 = "sha256-gBZY/xj/T7UYQ5mnN6udpBKViE/RYz9tmbmYN+JqsBk=";
};
+2 -2
View File
@@ -15,8 +15,8 @@ buildGoModule rec {
version = "2.32.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
owner = "bettercap";
repo = "bettercap";
rev = "v${version}";
sha256 = "sha256-OND8WPqU/95rKykqMAPWmDsJ+AjsjGjrncZ2/m3mpt0=";
};
+2 -2
View File
@@ -34,13 +34,13 @@ let
"bfup"
];
in
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "bfscripts";
version = "unstable-2023-05-15";
src = fetchFromGitHub {
owner = "Mellanox";
repo = pname;
repo = "bfscripts";
rev = "1da79f3ece7cdf99b2571c00e8b14d2e112504a4";
hash = "sha256-pTubrnZKEFmtAj/omycFYeYwrCog39zBDEszoCrsQNQ=";
};
+1 -1
View File
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "deislabs";
repo = pname;
repo = "bindle";
rev = "v${version}";
sha256 = "sha256-xehn74fqP0tEtP4Qy9TRGv+P2QoHZLxRHzGoY5cQuv0=";
};
+1 -1
View File
@@ -14,7 +14,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
repo = "binocle";
rev = "v${version}";
sha256 = "sha256-WAk7xIrCRfVofn4w+gP5E3wnSZbXm/6MZWlNmtoLm20=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "mufeedvh";
repo = pname;
repo = "binserve";
rev = "v${version}";
hash = "sha256-Chm2xPB0BrLXSZslg9wnbDyHSJRQAvOtpH0Rw6w1q1s=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "chriswalz";
repo = pname;
repo = "bit";
rev = "v${version}";
sha256 = "sha256-18R0JGbG5QBDghF4SyhXaKe9UY5UzF7Ap0Y061Z1SZ8=";
};
@@ -13,7 +13,7 @@ python3.pkgs.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "Freed-Wu";
repo = pname;
repo = "bitbake-language-server";
rev = version;
hash = "sha256-NLDQ2P5peweugkoNYskpCyCEgBwVFA7RTs8+NvH8fj8=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "0xERR0R";
repo = pname;
repo = "blocky";
rev = "v${version}";
hash = "sha256-yd9qncTuzf7p1hIYHzzXyxAx1C1QiuQAIYSKcjCiF0E=";
};
+1 -1
View File
@@ -20,7 +20,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
repo = "blueberry";
rev = version;
sha256 = "sha256-MyIjcTyKn1aC2th6fCOw4cIqrRKatk2s4QD5R9cm83A=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitLab {
owner = "jtaimisto";
repo = pname;
repo = "bluewalker";
rev = "v${version}";
hash = "sha256-wAzBlCczsLfHboGYIsyN7dGwz52CMw+L3XQ0njfLVR0=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "benchkram";
repo = pname;
repo = "bob";
rev = version;
hash = "sha256-zmWfOLBb+GWw9v6LdCC7/WaP1Wz7UipPwqkmI1+rG8Q=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "br0xen";
repo = pname;
repo = "boltbrowser";
rev = version;
sha256 = "sha256-3t0U1bSJbo3RJZe+PwaUeuzSt23Gs++WRe/uehfa4cA=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
repo = "bom";
rev = "v${version}";
hash = "sha256-nYzBaFtOJhqO0O6MJsxTw/mxsIOa+cnU27nOFRe2/uI=";
# populate values that require us to use git. By doing this in postFetch we
+1 -1
View File
@@ -21,7 +21,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "anatol";
repo = pname;
repo = "booster";
rev = version;
hash = "sha256-uHxPzuD3PxKAI2JOZd7lcLvcqYqk9gW9yeZgOS1Y7x4=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "cloudfoundry";
repo = pname;
repo = "bosh-cli";
rev = "v${version}";
sha256 = "sha256-jWT34XdphNrkUwJq72EkvWLNoLVOc8rGf6SY4/CUvc0=";
};
+2 -2
View File
@@ -13,14 +13,14 @@
python3Packages.buildPythonPackage rec {
pname = "boxflat";
version = "1.30.1";
version = "1.31.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Lawstorant";
repo = "boxflat";
tag = "v${version}";
hash = "sha256-5P6To0VRnvdu316bPIL7gDRuZLRjXLFbOpB9wZKs/t8=";
hash = "sha256-2x7voGnbvaUg1G2SfdjD0QPVXolHkUcrwGyoclnOLMo=";
};
build-system = [ python3Packages.setuptools ];
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "brevdev";
repo = pname;
repo = "brev-cli";
rev = "v${version}";
sha256 = "sha256-dZY87iUPr1NYZNERAzuxX/en0fgefekpXAi5Um1nTBc=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "txthinking";
repo = pname;
repo = "brook";
rev = "v${version}";
sha256 = "sha256-rfCqYI0T/nbK+rlPGl5orLo3qHKITesdFNtXc/ECATA=";
};
+1 -1
View File
@@ -12,7 +12,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromSourcehut {
owner = "~cnx";
repo = pname;
repo = "brutalmaze";
rev = version;
sha256 = "1m105iq378mypj64syw59aldbm6bj4ma4ynhc50gafl656fabg4y";
};
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "btcsuite";
repo = pname;
repo = "btcd";
rev = "v${version}";
hash = "sha256-83eiVYXpyiGgLmYxj3rFk4CHG7F9UQ3vk1ZHm64Cm4A=";
};
+1 -1
View File
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "aristocratos";
repo = pname;
repo = "btop";
rev = "v${version}";
hash = "sha256-4x2vGmH2dfHZHG+zj2KGsL/pRNIZ8K8sXYRHy0io5IE=";
};
+1 -1
View File
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "jorio";
repo = pname;
repo = "bugdom";
rev = version;
hash = "sha256-0c7v5tSqYuqtLOFl4sqD7+naJNqX/wlKHVntkZQGJ8A=";
fetchSubmodules = true;
+1 -1
View File
@@ -10,7 +10,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "mroth";
repo = pname;
repo = "bump";
rev = "v${version}";
sha256 = "sha256-a+vmpmWb/jICNdErkvCQKNIdaKtSrIJZ3BApLvKG/hg=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "andrewchambers";
repo = pname;
repo = "bupstash";
rev = "v${version}";
sha256 = "sha256-Ekjxna3u+71s1q7jjXp7PxYUQIfbp2E+jAqKGuszU6g=";
};
+2 -2
View File
@@ -6,13 +6,13 @@
buildGoModule rec {
pname = "butane";
version = "0.23.0";
version = "0.24.0";
src = fetchFromGitHub {
owner = "coreos";
repo = "butane";
rev = "v${version}";
hash = "sha256-UJRHqvfCeKxbE+SRQZEm797WqwGpwjlqol8z36l3nS4=";
hash = "sha256-xb5CDuwGpYJgnG0KzlvkzTyeqo1d2fUcXh0a2hbCEd0=";
};
vendorHash = null;
+2 -2
View File
@@ -3,13 +3,13 @@
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule {
pname = "caeml";
version = "unstable-2023-05-24";
src = fetchFromGitHub {
owner = "ferdinandyb";
repo = pname;
repo = "caeml";
rev = "25dbe10e99aac9b0ce3b80787c162628104f5cd2";
sha256 = "UIQCNkUyrtMF0IiAfkDvE8siqxNvfFc9TZdlZiTxCVc=";
};
+1 -1
View File
@@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitea {
domain = "codeberg.org";
owner = "WhyNotHugo";
repo = pname;
repo = "caffeine-ng";
rev = "v${version}";
hash = "sha256-uYzLRZ+6ZgIwhSuJWRBpLYHgonX7sFXgUZid0V26V0Q=";
};
+1 -1
View File
@@ -12,7 +12,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "Ullaakut";
repo = pname;
repo = "cameradar";
rev = "v${version}";
sha256 = "sha256-GOqmz/aiOLGMfs9rQBIEQSgBycPzhu8BohcAc2U+gBw=";
};
+66
View File
@@ -0,0 +1,66 @@
{
fetchurl,
appimageTools,
makeWrapper,
imagemagick,
lib,
}:
let
pname = "capacities";
version = "1.48.7";
name = "${pname}-${version}";
src = fetchurl {
url = "https://web.archive.org/web/20250519011655/https://capacities-desktop-app.fra1.cdn.digitaloceanspaces.com/capacities-${version}.AppImage";
hash = "sha256-fa1Wk3w+f467n0JtRz+Zjw9QKDKKnhS23biEtNqO17Y=";
};
appimageContents = appimageTools.extractType2 {
inherit
pname
src
version
;
};
in
appimageTools.wrapType2 {
inherit
pname
src
version
;
extraInstallCommands = ''
source "${makeWrapper}/nix-support/setup-hook"
wrapProgram $out/bin/capacities \
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
# Check for required desktop file
if [ ! -f ${appimageContents}/capacities.desktop ]; then
echo "Error: Missing .desktop file in ${appimageContents}"
exit 1
else
# Install and modify the desktop file
install -m 444 -D ${appimageContents}/capacities.desktop $out/share/applications/capacities.desktop
fi
# Check for required icon file
if [ ! -f ${appimageContents}/capacities.png ]; then
echo "Error: Missing icon file in ${appimageContents}"
exit 1
else
# Resize and install the icon
${lib.getExe imagemagick} ${appimageContents}/capacities.png -resize 512x512 capacities_512.png
install -m 444 -D capacities_512.png $out/share/icons/hicolor/512x512/apps/capacities.png
fi
'';
meta = {
description = "Calm place to make sense of the world and create amazing things";
homepage = "https://capacities.io/";
platforms = [ "x86_64-linux" ];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
license = lib.licenses.unfree;
mainProgram = "capacities";
};
}
+3 -3
View File
@@ -8,19 +8,19 @@
buildGoModule (finalAttrs: {
pname = "carapace-bridge";
version = "1.2.9";
version = "1.2.10";
src = fetchFromGitHub {
owner = "carapace-sh";
repo = "carapace-bridge";
tag = "v${finalAttrs.version}";
hash = "sha256-Y69byUUDJJ+nJuZ6lcl+McFtJGYb5zgE8+QTbhoZ9Bc=";
hash = "sha256-XQtbOQw2a2B5zhTgFiAuECtY/uM7AQnbwyRpzoKcF8I=";
};
# buildGoModule try to run `go mod vendor` instead of `go work vendor` on the
# workspace if proxyVendor is off
proxyVendor = true;
vendorHash = "sha256-TVqQrqdMmzv1w4Y37pB2t/apdMPm6QO/0VVS3x86GpE=";
vendorHash = "sha256-01WRJJiAqxmb1grvz9gWdYJ4i9pVUYmxFg9BGEuUhdA=";
postPatch = ''
substituteInPlace cmd/carapace-bridge/main.go \
+1 -1
View File
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "matthiaskrgr";
repo = pname;
repo = "cargo-cache";
rev = version;
sha256 = "sha256-q9tYKXK8RqiqbDZ/lTxUI1Dm/h28/yZR8rTQuq+roZs=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "janlikar";
repo = pname;
repo = "cargo-clone";
rev = "v${version}";
sha256 = "sha256-tAY4MUytFVa7kXLeOg4xak8XKGgApnEGWiK51W/7uDg=";
};
+1 -1
View File
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "killercup";
repo = pname;
repo = "cargo-edit";
rev = "v${version}";
hash = "sha256-z+LTgCeTUr3D0LEbw0yHlk1di2W95XewbYlgusD2TLg=";
};
+3 -3
View File
@@ -6,17 +6,17 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-expand";
version = "1.0.106";
version = "1.0.107";
src = fetchFromGitHub {
owner = "dtolnay";
repo = "cargo-expand";
rev = version;
hash = "sha256-7j8i0wvbbAFPNgHamy+lybQpz1ht+n90oidVGSXP6MA=";
hash = "sha256-oAZ7xt/Ji36XtGh7UXHbseBRQtpmsKHcAABiloITPXA=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-e6K97VUsCYx56Y9r7QPVBV3eMwWnjEhZoEKpmuKmkJk=";
cargoHash = "sha256-4HH25MEj3iCrm9iCW8vWVMDou/F3YidRIWDH0m5FTaY=";
meta = with lib; {
description = "Cargo subcommand to show result of macro expansion";
+1 -1
View File
@@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "acfoltzer";
repo = pname;
repo = "cargo-fund";
rev = version;
hash = "sha256-8mnCwWwReNH9s/gbxIhe7XdJRIA6BSUKm5jzykU5qMU=";
};
+1 -1
View File
@@ -16,7 +16,7 @@ rustPlatform.buildRustPackage {
inherit pname version;
src = fetchFromGitHub {
owner = "tauri-apps";
repo = pname;
repo = "cargo-mobile2";
rev = "cargo-mobile2-v${version}";
hash = "sha256-7/ol4Jb/2s007LeSMo6YYDT5vipsZZF6O4hfJ7ylHGg=";
};
+1 -1
View File
@@ -10,7 +10,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "bbqsrc";
repo = pname;
repo = "cargo-ndk";
rev = "v${version}";
sha256 = "sha256-tzjiq1jjluWqTl+8MhzFs47VRp3jIRJ7EOLhUP8ydbM=";
};
+2 -2
View File
@@ -17,12 +17,12 @@ let
inherit (rustPlatform) buildRustPackage;
in
buildRustPackage rec {
buildRustPackage {
inherit pname version;
src = fetchFromGitHub {
inherit owner rev hash;
repo = pname;
repo = "cargo-profiler";
};
useFetchCargoVendor = true;
+1 -1
View File
@@ -14,7 +14,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "est31";
repo = pname;
repo = "cargo-udeps";
rev = "v${version}";
sha256 = "sha256-4/JfD2cH46it8PkU58buTHwFXBZI3sytyJCUWl+vSAE=";
};
+1 -1
View File
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "watchexec";
repo = pname;
repo = "cargo-watch";
rev = "v${version}";
hash = "sha256-agwK20MkvnhqSVAWMy3HLkUJbraINn12i6VAg8mTzBk=";
};
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "museun";
repo = pname;
repo = "cargo-whatfeatures";
rev = "v${version}";
sha256 = "sha256-YJ08oBTn9OwovnTOuuc1OuVsQp+/TPO3vcY4ybJ26Ms=";
};

Some files were not shown because too many files have changed in this diff Show More