mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
tsukae: init at unstable-2021-04-19
This commit is contained in:
parent
f8108be127
commit
190a599b31
26
pkgs/applications/misc/tsukae/default.nix
Normal file
26
pkgs/applications/misc/tsukae/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -31176,6 +31176,8 @@ in
|
||||
python = python3;
|
||||
};
|
||||
|
||||
tsukae = callPackage ../applications/misc/tsukae { };
|
||||
|
||||
tsung = callPackage ../applications/networking/tsung {};
|
||||
|
||||
bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {};
|
||||
|
Loading…
Reference in New Issue
Block a user