mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
38 lines
804 B
Nix
38 lines
804 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
let
|
|
version = "5.0.4";
|
|
in
|
|
buildGoModule {
|
|
pname = "license-go";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nishanths";
|
|
repo = "license";
|
|
rev = "v${version}";
|
|
hash = "sha256-Rz/eIGa3xLjirPMOs4otfmwy4OzJgopKPbka2OKt8Fo=";
|
|
};
|
|
|
|
vendorHash = "sha256-kx3lPhmEo515sHgHBqDC6udz6xkZvB+nn6x3/JaBHbo=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
"-X main.builtBy=nixpkgs"
|
|
];
|
|
|
|
meta = {
|
|
description = "Command line license text generator";
|
|
homepage = "https://github.com/nishanths/license";
|
|
changelog = "https://github.com/nishanths/license/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ uncenter ];
|
|
mainProgram = "license";
|
|
};
|
|
}
|