tsukae: init at unstable-2021-04-19

This commit is contained in:
L3af 2021-05-07 11:43:52 +00:00
parent f8108be127
commit 190a599b31
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ 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 ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View file

@ -31176,6 +31176,8 @@ in
python = python3;
};
tsukae = callPackage ../applications/misc/tsukae { };
tsung = callPackage ../applications/networking/tsung {};
bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {};