commit
5c2cdd576e
3 changed files with 34 additions and 0 deletions
|
@ -9498,6 +9498,12 @@
|
||||||
githubId = 621759;
|
githubId = 621759;
|
||||||
name = "Lassulus";
|
name = "Lassulus";
|
||||||
};
|
};
|
||||||
|
laurailway = {
|
||||||
|
email = "laurailway.git@posteo.net";
|
||||||
|
github = "LAURAilway";
|
||||||
|
githubId = 118690640;
|
||||||
|
name = "Laura";
|
||||||
|
};
|
||||||
laurent-f1z1 = {
|
laurent-f1z1 = {
|
||||||
email = "laurent.nixpkgs@fainsin.bzh";
|
email = "laurent.nixpkgs@fainsin.bzh";
|
||||||
github = "Laurent2916";
|
github = "Laurent2916";
|
||||||
|
|
26
pkgs/applications/misc/harsh/default.nix
Normal file
26
pkgs/applications/misc/harsh/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3859,6 +3859,8 @@ with pkgs;
|
||||||
|
|
||||||
hakrawler = callPackage ../tools/security/hakrawler { };
|
hakrawler = callPackage ../tools/security/hakrawler { };
|
||||||
|
|
||||||
|
harsh = callPackage ../applications/misc/harsh { };
|
||||||
|
|
||||||
harvid = callPackage ../tools/video/harvid { };
|
harvid = callPackage ../tools/video/harvid { };
|
||||||
|
|
||||||
headset = callPackage ../applications/audio/headset { };
|
headset = callPackage ../applications/audio/headset { };
|
||||||
|
|
Loading…
Reference in a new issue