biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / nasmfmt / default.nix
blobeda6940f079f78378a2db2ae32aa79e2e67e8b0a
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "nasmfmt";
5   version = "unstable-2022-09-15";
7   src = fetchFromGitHub {
8     owner = "yamnikov-oleg";
9     repo = "nasmfmt";
10     rev = "127dbe8e72376c67d7dff89010ccfb49fc7b533e";
11     hash = "sha256-1c7ZOdoM0/Us7cnTT3sds2P5pcCedrCfl0GqQBnf9Rk=";
12   };
14   vendorHash = null;
16   preBuild = ''
17     cp ${./go.mod} go.mod
18   '';
20   ldflags = [ "-s" "-w" ];
22   meta = with lib; {
23     description = "Formatter for NASM source files";
24     mainProgram = "nasmfmt";
25     homepage = "https://github.com/yamnikov-oleg/nasmfmt";
26     license = licenses.mit;
27     maintainers = with maintainers; [ ckie ];
28   };