···1+{ stdenv, fetchzip }:
2+stdenv.mkDerivation {
3+ name = "ries-2018-04-11";
4+5+ # upstream does not provide a stable link
6+ src = fetchzip {
7+ url = "https://salsa.debian.org/debian/ries/-/archive/debian/2018.04.11-1/ries-debian-2018.04.11-1.zip";
8+ sha256 = "1h2wvd4k7f0l0i1vm9niz453xdbcs3nxccmri50qyrzzzc1b0842";
9+ };
10+11+ makeFlags = "PREFIX=$(out)";
12+13+ meta = with stdenv.lib; {
14+ homepage = https://mrob.com/pub/ries/;
15+ description = "Tool to produce a list of equations that approximately solve to a given number";
16+ platforms = platforms.all;
17+ maintainers = with maintainers; [ symphorien ];
18+ license = licenses.gpl3Plus;
19+ };
20+}
21+