mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
golex: init at 1.1.0
This commit is contained in:
parent
51d4a9316e
commit
d924b523e0
36
pkgs/by-name/go/golex/package.nix
Normal file
36
pkgs/by-name/go/golex/package.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user