Files
nixpkgs/pkgs/by-name/it/itools/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

51 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
perl,
libitl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "itools";
version = "1.1";
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
libitl
perl
];
outputs = [
"out"
"man"
];
src = fetchFromGitHub {
owner = "arabeyes-org";
repo = "itools";
rev = finalAttrs.version;
hash = "sha256-DxTZaq2SlEmy9k7iAdjctpPkk+2rIaF+xEcfXj/ERWw=";
};
meta = {
description = "Islamic command-line tools for prayer times and hijri dates";
longDescription = ''
The itools package is a set of user friendly applications utilizing Arabeyes' ITL library.
The package addresses two main areas - hijri date and prayertime calculation. The package
is envisioned to mimick the development of the underlying ITL library and is meant to
always give the end-user a simple means to access its functions.
'';
homepage = "https://www.arabeyes.org/ITL";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ amyipdev ];
};
})