mnc: init at 0.4
This commit is contained in:
parent
66da2af8bd
commit
2ea79e0fe4
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/misc/mnc/default.nix
Normal file
26
pkgs/tools/misc/mnc/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromSourcehut
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "mnc";
|
||||
version = "0.4";
|
||||
|
||||
vendorSha256 = "sha256-H0KmGTWyjZOZLIEWophCwRYPeKLxBC050RI7cMXNbPs=";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~anjan";
|
||||
repo = "mnc";
|
||||
rev = version;
|
||||
sha256 = "sha256-S7MBIxuYI+cc8OMQULt7VS7ouPqhq0Jk+rz6E5GyKac=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Opens the user's crontab and echos the time when the next cronjob will be ran";
|
||||
homepage = "https://git.sr.ht/~anjan/mnc";
|
||||
license = licenses.unlicense;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ wentam ];
|
||||
};
|
||||
}
|
|
@ -1396,6 +1396,8 @@ with pkgs;
|
|||
|
||||
midi-trigger = callPackage ../applications/audio/midi-trigger { };
|
||||
|
||||
mnc = callPackage ../tools/misc/mnc { };
|
||||
|
||||
mprocs = callPackage ../tools/misc/mprocs { };
|
||||
|
||||
nominatim = callPackage ../servers/nominatim { };
|
||||
|
|
Loading…
Reference in a new issue