25 lines
663 B
Nix
25 lines
663 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "lsh";
|
|
version = "1.4.2";
|
|
src = fetchFromGitHub {
|
|
owner = "latitudesh";
|
|
repo = "lsh";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-TV3ix1W/+rUXgeoVYneAfosa6ikf7e3giwsX4gyp2o0=";
|
|
};
|
|
vendorHash = "sha256-ogdyzfayleka4Y8x74ZtttD7MaeCl1qP/rQi9x0tMto=";
|
|
subPackages = [ "." ];
|
|
meta = {
|
|
changelog = "https://github.com/latitudesh/lsh/releases/tag/v${version}";
|
|
description = "Command-Line Interface for Latitude.sh";
|
|
homepage = "https://github.com/latitudesh/lsh";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.dzmitry-lahoda ];
|
|
};
|
|
}
|