lol

Merge pull request #195665 from laalsaas/wwcd

wwcd: init at unstable-2022-02-05r

authored by

Jonas Heinrich and committed by
GitHub
39da21a4 c585615c

+37
+4
maintainers/maintainer-list.nix
··· 7481 7481 githubId = 72546287; 7482 7482 name = "L3af"; 7483 7483 }; 7484 + laalsaas = { 7485 + email = "laalsaas@systemli.org"; 7486 + name = "laalsaas"; 7487 + }; 7484 7488 lach = { 7485 7489 email = "iam@lach.pw"; 7486 7490 github = "CertainLach";
+31
pkgs/tools/misc/wwcd/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromSourcehut 4 + , autoreconfHook 5 + , pkg-config 6 + , check 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "wwcd"; 11 + version = "unstable-2022-02-05"; 12 + 13 + src = fetchFromSourcehut { 14 + owner = "~bitfehler"; 15 + repo = pname; 16 + rev = "cdf70bb18dc60c66c074d4810cb37b9e697811e5"; 17 + sha256 = "sha256-laf1DEtdEs7q+rtp5Y5rb+7AGsKUv5T413CFWJiURWw="; 18 + }; 19 + 20 + autoreconfFlags = "-if"; 21 + nativeBuildInputs = [ 22 + autoreconfHook pkg-config check 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "What would cron do? Read crontab entries from stdin and print time of next execution(s)"; 27 + homepage = "https://git.sr.ht/~bitfehler/wwcd"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ laalsaas ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 1432 1432 use64 = true; 1433 1433 }; 1434 1434 1435 + wwcd = callPackage ../tools/misc/wwcd { }; 1436 + 1435 1437 writedisk = callPackage ../tools/misc/writedisk { }; 1436 1438 1437 1439 xcd = callPackage ../tools/misc/xcd { };