2022-12-16 14:41:26 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2022-05-23 17:08:03 +00:00
|
|
|
|
2022-12-16 14:41:26 +00:00
|
|
|
buildGoModule rec {
|
2022-05-23 17:08:03 +00:00
|
|
|
pname = "nasmfmt";
|
2022-12-16 14:41:26 +00:00
|
|
|
version = "unstable-2022-09-15";
|
2022-05-23 17:08:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yamnikov-oleg";
|
|
|
|
repo = "nasmfmt";
|
2022-12-16 14:41:26 +00:00
|
|
|
rev = "127dbe8e72376c67d7dff89010ccfb49fc7b533e";
|
|
|
|
hash = "sha256-1c7ZOdoM0/Us7cnTT3sds2P5pcCedrCfl0GqQBnf9Rk=";
|
2022-05-23 17:08:03 +00:00
|
|
|
};
|
|
|
|
|
2023-01-21 16:35:00 +00:00
|
|
|
vendorHash = null;
|
2022-12-16 14:41:26 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
cp ${./go.mod} go.mod
|
|
|
|
'';
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" ];
|
2022-05-23 17:08:03 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Formatter for NASM source files";
|
|
|
|
homepage = "https://github.com/yamnikov-oleg/nasmfmt";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ckie ];
|
|
|
|
};
|
|
|
|
}
|