From a22d41a78dba07bf5e87ffbdf98446967ebdad44 Mon Sep 17 00:00:00 2001 From: laura Date: Sun, 27 Aug 2023 04:03:46 +0200 Subject: [PATCH 1/2] maintainers: add LAURAilway --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d0a3004e9ca1..52a74e1d6805 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9489,6 +9489,12 @@ githubId = 621759; name = "Lassulus"; }; + laurailway = { + email = "laurailway.git@posteo.net"; + github = "LAURAilway"; + githubId = 118690640; + name = "Laura"; + }; laurent-f1z1 = { email = "laurent.nixpkgs@fainsin.bzh"; github = "Laurent2916"; From 688ab6699be6501e268caf585b6bb1a51de47917 Mon Sep 17 00:00:00 2001 From: laura Date: Sun, 27 Aug 2023 04:57:10 +0200 Subject: [PATCH 2/2] harsh: init at 0.8.28 --- pkgs/applications/misc/harsh/default.nix | 26 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/misc/harsh/default.nix diff --git a/pkgs/applications/misc/harsh/default.nix b/pkgs/applications/misc/harsh/default.nix new file mode 100644 index 000000000000..bf38ae4ffe0c --- /dev/null +++ b/pkgs/applications/misc/harsh/default.nix @@ -0,0 +1,26 @@ +{ lib +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "harsh"; + version = "0.8.28"; + + src = fetchFromGitHub { + owner = "wakatara"; + repo = pname; + rev = "v${version}"; + hash = "sha256-6BeGyyy4RFBy4TvB3bLTyDtQGljG9xE3VFfbnq9KWcs="; + }; + + vendorHash = "sha256-zkz7X/qj8FwtQZXGuq4Oaoe5G9a4AJE1kv3j7wwQEp4="; + + meta = with lib; { + description = "CLI habit tracking for geeks"; + homepage = "https://github.com/wakatara/harsh"; + changelog = "https://github.com/wakatara/harsh/releases/tag/v${version}"; + license = licenses.mit; + maintainers = with maintainers; [ laurailway ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 33d96d0b5248..04ac87c7d67e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3859,6 +3859,8 @@ with pkgs; hakrawler = callPackage ../tools/security/hakrawler { }; + harsh = callPackage ../applications/misc/harsh { }; + harvid = callPackage ../tools/video/harvid { }; headset = callPackage ../applications/audio/headset { };