mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
goose-lang: init at 0.9.1 (#349128)
This commit is contained in:
commit
9d72554949
33
pkgs/by-name/go/goose-lang/package.nix
Normal file
33
pkgs/by-name/go/goose-lang/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "goose-lang";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "goose-lang";
|
||||
repo = "goose";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-P26Q21MWrne1pB3/EvLYp2i8Xw7oG9Waer2hhHyco1A=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-HCJ8v3TSv4UrkOsRuENWVz5Z7zQ1UsOygx0Mo7MELzY=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Goose converts a small subset of Go to Coq";
|
||||
homepage = "https://github.com/goose-lang/goose";
|
||||
changelog = "https://github.com/goose-lang/goose/releases/tag/v${version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ stepbrobd ];
|
||||
mainProgram = "goose";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user