Merge pull request #251704 from LAURAilway/harsh

harsh: init at 0.8.28

authored by tomberek and committed by GitHub 5c2cdd57 299082dc

+34
+6
maintainers/maintainer-list.nix
··· 9498 9498 githubId = 621759; 9499 9499 name = "Lassulus"; 9500 9500 }; 9501 + laurailway = { 9502 + email = "laurailway.git@posteo.net"; 9503 + github = "LAURAilway"; 9504 + githubId = 118690640; 9505 + name = "Laura"; 9506 + }; 9501 9507 laurent-f1z1 = { 9502 9508 email = "laurent.nixpkgs@fainsin.bzh"; 9503 9509 github = "Laurent2916";
+26
pkgs/applications/misc/harsh/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "harsh"; 8 + version = "0.8.28"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "wakatara"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-6BeGyyy4RFBy4TvB3bLTyDtQGljG9xE3VFfbnq9KWcs="; 15 + }; 16 + 17 + vendorHash = "sha256-zkz7X/qj8FwtQZXGuq4Oaoe5G9a4AJE1kv3j7wwQEp4="; 18 + 19 + meta = with lib; { 20 + description = "CLI habit tracking for geeks"; 21 + homepage = "https://github.com/wakatara/harsh"; 22 + changelog = "https://github.com/wakatara/harsh/releases/tag/v${version}"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ laurailway ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 3859 3859 3860 3860 hakrawler = callPackage ../tools/security/hakrawler { }; 3861 3861 3862 + harsh = callPackage ../applications/misc/harsh { }; 3863 + 3862 3864 harvid = callPackage ../tools/video/harvid { }; 3863 3865 3864 3866 headset = callPackage ../applications/audio/headset { };