mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
25 lines
657 B
Nix
25 lines
657 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "unconvert";
|
|
version = "unstable-2022-09-18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mdempsky";
|
|
repo = "unconvert";
|
|
rev = "3f84926d692329767c21c2aef3dfb7889c956832";
|
|
sha256 = "sha256-vcRHriFCT5b8SKjtRSg+kZDcCAKySC1cKVq+FMZb+9M=";
|
|
};
|
|
|
|
vendorHash = "sha256-p77mLvGtohmC8J+bqqkM5kqc1pMPcFx7GhXOZ4q4jeM=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "Remove unnecessary type conversions from Go source";
|
|
homepage = "https://github.com/mdempsky/unconvert";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
};
|
|
}
|