Merge pull request #122020 from L3afMe/master
This commit is contained in:
commit
f2f00af5b8
3 changed files with 33 additions and 0 deletions
|
@ -5517,6 +5517,12 @@
|
||||||
}];
|
}];
|
||||||
name = "Las Safin";
|
name = "Las Safin";
|
||||||
};
|
};
|
||||||
|
l3af = {
|
||||||
|
email = "L3afMeAlon3@gmail.com";
|
||||||
|
github = "L3afMe";
|
||||||
|
githubId = 72546287;
|
||||||
|
name = "L3af";
|
||||||
|
};
|
||||||
laikq = {
|
laikq = {
|
||||||
email = "gwen@quasebarth.de";
|
email = "gwen@quasebarth.de";
|
||||||
github = "laikq";
|
github = "laikq";
|
||||||
|
|
25
pkgs/applications/misc/tsukae/default.nix
Normal file
25
pkgs/applications/misc/tsukae/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -31503,6 +31503,8 @@ in
|
||||||
python = python3;
|
python = python3;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tsukae = callPackage ../applications/misc/tsukae { };
|
||||||
|
|
||||||
tsung = callPackage ../applications/networking/tsung {};
|
tsung = callPackage ../applications/networking/tsung {};
|
||||||
|
|
||||||
bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {};
|
bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {};
|
||||||
|
|
Loading…
Reference in a new issue