mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
58802b68fe
Diff: https://github.com/bloznelis/typioca/compare/2.7.0...2.8.0 Changelog: https://github.com/bloznelis/typioca/releases/tag/2.8.0
41 lines
854 B
Nix
41 lines
854 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, typioca
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "typioca";
|
|
version = "2.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bloznelis";
|
|
repo = "typioca";
|
|
rev = version;
|
|
hash = "sha256-cm6z7MVAbFxfkSTaCfh8wZhtgXdfVQopqEk+w+hPZpI=";
|
|
};
|
|
|
|
vendorHash = "sha256-XiKn18WCbhVvsrIvTN/Yquj4mhq4n1X1jqdGUaMacV4=";
|
|
|
|
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 ];
|
|
};
|
|
}
|