From f8108be127b4fdfe250c640a8f35ecb8c763bc1a Mon Sep 17 00:00:00 2001 From: L3af Date: Fri, 7 May 2021 11:35:28 +0000 Subject: [PATCH 1/3] maintainers: add l3eaf --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e9d5e811149..39a4eec211f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5497,6 +5497,12 @@ }]; name = "Las Safin"; }; + l3af = { + email = "L3afMeAlon3@gmail.com"; + github = "L3afMe"; + githubId = 72546287; + name = "L3af"; + }; laikq = { email = "gwen@quasebarth.de"; github = "laikq"; From 190a599b31e8d7c8bc65098eeeaf83f9b03d3f9f Mon Sep 17 00:00:00 2001 From: L3af Date: Fri, 7 May 2021 11:43:52 +0000 Subject: [PATCH 2/3] tsukae: init at unstable-2021-04-19 --- pkgs/applications/misc/tsukae/default.nix | 26 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/misc/tsukae/default.nix diff --git a/pkgs/applications/misc/tsukae/default.nix b/pkgs/applications/misc/tsukae/default.nix new file mode 100644 index 00000000000..a1670f4b88d --- /dev/null +++ b/pkgs/applications/misc/tsukae/default.nix @@ -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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89586589245..278eb36ed7a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -31176,6 +31176,8 @@ in python = python3; }; + tsukae = callPackage ../applications/misc/tsukae { }; + tsung = callPackage ../applications/networking/tsung {}; bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {}; From 62d2d1953e6bc4549883b11c1ff22728dfbfbbe4 Mon Sep 17 00:00:00 2001 From: L3af Date: Sat, 8 May 2021 22:15:57 +0000 Subject: [PATCH 3/3] tsukae: remove platform specifics Co-authored-by: Sandro --- pkgs/applications/misc/tsukae/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/misc/tsukae/default.nix b/pkgs/applications/misc/tsukae/default.nix index a1670f4b88d..f4ebaa41efb 100644 --- a/pkgs/applications/misc/tsukae/default.nix +++ b/pkgs/applications/misc/tsukae/default.nix @@ -21,6 +21,5 @@ buildGoModule rec { license = licenses.mit; mainProgram = pname; maintainers = with maintainers; [ l3af ]; - platforms = platforms.linux ++ platforms.darwin; }; }