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
27 lines
701 B
Nix
27 lines
701 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "ries";
|
|
version = "2018.04.11-1";
|
|
|
|
# upstream does not provide a stable link
|
|
src = fetchzip {
|
|
url = "https://salsa.debian.org/debian/ries/-/archive/debian/${version}/ries-debian-${version}.zip";
|
|
sha256 = "1h2wvd4k7f0l0i1vm9niz453xdbcs3nxccmri50qyrzzzc1b0842";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://mrob.com/pub/ries/";
|
|
description = "Tool to produce a list of equations that approximately solve to a given number";
|
|
mainProgram = "ries";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ symphorien ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|