29 lines
601 B
Nix
29 lines
601 B
Nix
|
{
|
||
|
buildGoModule,
|
||
|
fetchFromGitea,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
buildGoModule rec {
|
||
|
pname = "imp";
|
||
|
version = "0.0.4";
|
||
|
|
||
|
src = fetchFromGitea {
|
||
|
domain = "git.jojodev.com";
|
||
|
owner = "jolheiser";
|
||
|
repo = "imp";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-20xDL0M/ZMV9dX4zBxR9vPawub4zONnuXwC8Hxml9ow=";
|
||
|
};
|
||
|
|
||
|
vendorSha256 = "sha256-1az96BTJrkj6tigca5YNwEB9fX+BZX2A+aBttOQfo9g=";
|
||
|
|
||
|
ldflags = ["-s" "-w" "-X=main.Version=${version}"];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Opinionated import formatter";
|
||
|
homepage = "https://git.jojodev.com/jolheiser/imp";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|