Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 fetchFromGitHub,
4 buildGoModule,
5}:
6
7buildGoModule {
8 pname = "tsukae";
9 version = "0-unstable-2021-04-19";
10
11 src = fetchFromGitHub {
12 owner = "irevenko";
13 repo = "tsukae";
14 rev = "8111dddd67e4b4f83ae4bca7d7305f6dc64e77cd";
15 sha256 = "sha256-1y/WYLW6/HMGmuaX2wOlQbwYn0LcgQCMb4qw8BtCgxQ=";
16 };
17
18 vendorHash = "sha256-Q0WOzyJGnTXTmj7ZPKyVSnWuWb4bbDjDpgftQ1Opf/I=";
19
20 meta = with lib; {
21 description = "Show off your most used shell commands";
22 homepage = "https://github.com/irevenko/tsukae";
23 license = licenses.mit;
24 mainProgram = "tsukae";
25 maintainers = with maintainers; [ l3af ];
26 };
27}