nixpkgs/pkgs/development/tools/asmfmt/default.nix

33 lines
795 B
Nix
Raw Normal View History

2018-10-31 18:12:56 +00:00
{ buildGoPackage
, lib
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "asmfmt";
2021-03-25 22:02:16 +00:00
version = "1.2.3";
2018-10-31 18:12:56 +00:00
goPackagePath = "github.com/klauspost/asmfmt";
src = fetchFromGitHub {
owner = "klauspost";
repo = "asmfmt";
rev = "v${version}";
2021-03-25 22:02:16 +00:00
sha256 = "0f2cgwxs2b2kpq5348h8hjkcqc40p8ajapzpcy9ia2fsmsn2a2s4";
2018-10-31 18:12:56 +00:00
};
goDeps = ./deps.nix;
# This package comes with its own version of goimports, gofmt and goreturns
# but these binaries are outdated and are offered by other packages.
subPackages = [ "cmd/asmfmt" ];
2018-10-31 18:12:56 +00:00
meta = with lib; {
description = "Go Assembler Formatter";
homepage = "https://github.com/klauspost/asmfmt";
2018-10-31 18:12:56 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}