nixpkgs/pkgs/tools/misc/mnc/default.nix
Fabián Heredia Montiel ff323ed355 treewide: vendorSha256 → vendorHash
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
2023-09-13 01:03:44 -06:00

27 lines
626 B
Nix

{ lib
, buildGoModule
, fetchFromSourcehut
}:
buildGoModule rec {
pname = "mnc";
version = "0.4";
vendorHash = "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 ];
};
}