mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
62d2d1953e
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
26 lines
647 B
Nix
26 lines
647 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tsukae";
|
|
version = "unstable-2021-04-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "irevenko";
|
|
repo = pname;
|
|
rev = "8111dddd67e4b4f83ae4bca7d7305f6dc64e77cd";
|
|
sha256 = "sha256-1y/WYLW6/HMGmuaX2wOlQbwYn0LcgQCMb4qw8BtCgxQ=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-mVhc9roT7rm9WMwck7jobjn9ykKQRgWJAqM75AmhMN0=";
|
|
|
|
runVend = true;
|
|
|
|
meta = with lib; {
|
|
description = "Show off your most used shell commands.";
|
|
homepage = "https://github.com/irevenko/tsukae";
|
|
license = licenses.mit;
|
|
mainProgram = pname;
|
|
maintainers = with maintainers; [ l3af ];
|
|
};
|
|
}
|