depot/third_party/nixpkgs/pkgs/by-name/go/golex/package.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

36 lines
898 B
Nix

{
lib,
buildGoModule,
fetchFromGitLab,
fetchpatch2,
}:
buildGoModule rec {
pname = "golex";
version = "1.1.0";
src = fetchFromGitLab {
owner = "cznic";
repo = "golex";
rev = "v${version}";
hash = "sha256-0Z2oE00vGnH2BBNmKAjRhy//fEbT5AQ+CKLIUr+NPwY=";
};
patches = [
# fix a unicode mismatch to make test pass
(fetchpatch2 {
url = "https://gitlab.com/cznic/golex/-/commit/a735a3b62b5fb36a715ba4e280270f9ca91c5e59.patch";
hash = "sha256-Q/Vyh91IwL3ConWpJU0akslkaVhHTkBmrMbmDVU3Txs=";
})
];
vendorHash = "sha256-Ig4cxZepvmI1EH0j2fuQ33jHOLWfS40UE+A4UHdo8oE=";
meta = {
description = "Lex/flex like utility rendering .l formated data to Go source code";
homepage = "https://pkg.go.dev/modernc.org/golex";
license = lib.licenses.bsd3;
mainProgram = "golex";
maintainers = with lib.maintainers; [ aleksana ];
};
}