mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
unconvert: 0-unstable-2023-09-07 -> 0-unstable-2025-02-16
This also fixes the build, which was failing due to Go being updated.
This commit is contained in:
parent
dcd14f078d
commit
0b3f468909
1 changed files with 7 additions and 4 deletions
|
@ -2,26 +2,29 @@
|
||||||
lib,
|
lib,
|
||||||
buildGoModule,
|
buildGoModule,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule {
|
buildGoModule {
|
||||||
pname = "unconvert";
|
pname = "unconvert";
|
||||||
version = "0-unstable-2023-09-07";
|
version = "0-unstable-2025-02-16";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mdempsky";
|
owner = "mdempsky";
|
||||||
repo = "unconvert";
|
repo = "unconvert";
|
||||||
rev = "415706980c061b6f71ea923bd206aec88785638f";
|
rev = "4a038b3d31f56ff5ba511953b745c80a2317e4ae";
|
||||||
hash = "sha256-MchA8uvy+MyQ/VaglBDTC7j/lNIKAtGeeECLoFfH6pI=";
|
hash = "sha256-97H5rlb4buRT6I3OUID8/UARFtCTDhIxnPCkpFF9RDs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-vZDk+ZNCMP5RRNrgeIowdOKPot7rqM84JhlbfvcQbB4=";
|
vendorHash = "sha256-Yh33ZvQoMG9YM8bdxlMYEIwH2QMTwv2HSYSmA4C9EpA=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
"-w"
|
"-w"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { extraArgs = lib.singleton "--version=branch"; };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Remove unnecessary type conversions from Go source";
|
description = "Remove unnecessary type conversions from Go source";
|
||||||
mainProgram = "unconvert";
|
mainProgram = "unconvert";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue