python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / wwcd / default.nix
blobd18c72a25eeb6f306f6e822d6b5f3e3f16ee7314
1 { stdenv
2 , lib
3 , fetchFromSourcehut
4 , autoreconfHook
5 , pkg-config
6 , check
7 }:
9 stdenv.mkDerivation rec {
10   pname = "wwcd";
11   version = "unstable-2022-02-05";
13   src = fetchFromSourcehut {
14     owner = "~bitfehler";
15     repo = pname;
16     rev = "cdf70bb18dc60c66c074d4810cb37b9e697811e5";
17     sha256 = "sha256-laf1DEtdEs7q+rtp5Y5rb+7AGsKUv5T413CFWJiURWw=";
18   };
20   autoreconfFlags = "-if";
21   nativeBuildInputs = [
22     autoreconfHook pkg-config check
23   ];
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   };