mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 01:23:03 +00:00
42 lines
884 B
Nix
42 lines
884 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, typioca
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "typioca";
|
|
version = "2.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bloznelis";
|
|
repo = "typioca";
|
|
rev = version;
|
|
hash = "sha256-D6I1r+8cvUerqXR2VyBL33lapWAs5Cl5yvYOsmUBnHo=";
|
|
};
|
|
|
|
vendorHash = "sha256-j/nyAHNwUoNkcdNJqcaUuhQk5a2VHQw/XgYIoTR9ctQ=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/bloznelis/typioca/cmd.Version=${version}"
|
|
];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = typioca;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Cozy typing speed tester in terminal";
|
|
homepage = "https://github.com/bloznelis/typioca";
|
|
changelog = "https://github.com/bloznelis/typioca/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "typioca";
|
|
};
|
|
}
|