nickel: 1.11.0 -> 1.12.0 (plus small tweaks) (#417245)

This commit is contained in:
Matthias Beyer
2025-06-24 14:36:50 +02:00
committed by GitHub
2 changed files with 10 additions and 4 deletions
+5
View File
@@ -27506,6 +27506,11 @@
github = "yanganto";
githubId = 10803111;
};
yannham = {
github = "yannham";
githubId = 6530104;
name = "Yann Hamdaoui";
};
yannickulrich = {
email = "yannick.ulrich@proton.me";
github = "yannickulrich";
+5 -4
View File
@@ -9,22 +9,22 @@
pkg-config,
nixVersions,
nix-update-script,
enableNixImport ? true,
enableNixImport ? false,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nickel";
version = "1.11.0";
version = "1.12.0";
src = fetchFromGitHub {
owner = "tweag";
repo = "nickel";
tag = finalAttrs.version;
hash = "sha256-I7cLVrkJhB3aJeE/A3tpFEUj0AkvcONSXD8NtnE5eQ0=";
hash = "sha256-iKLjYE4uT+luIRXjEuO7KjgkO+/jFpLjhCI5tO7TVMM=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-DzSfwBVeRT/GAXWyZKZjlDvj95bQzrkqIgZZ2EZw7eQ=";
cargoHash = "sha256-O/iat0JOvA90LD+ngAByLYQyd1VBeoa8yj7/NdEYprE=";
cargoBuildFlags = [
"-p nickel-lang-cli"
@@ -99,6 +99,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
maintainers = with lib.maintainers; [
felschr
matthiasbeyer
yannham
];
mainProgram = "nickel";
};