···11+{ stdenv, fetchzip }:
22+stdenv.mkDerivation {
33+ name = "ries-2018-04-11";
44+55+ # upstream does not provide a stable link
66+ src = fetchzip {
77+ url = "https://salsa.debian.org/debian/ries/-/archive/debian/2018.04.11-1/ries-debian-2018.04.11-1.zip";
88+ sha256 = "1h2wvd4k7f0l0i1vm9niz453xdbcs3nxccmri50qyrzzzc1b0842";
99+ };
1010+1111+ makeFlags = "PREFIX=$(out)";
1212+1313+ meta = with stdenv.lib; {
1414+ homepage = https://mrob.com/pub/ries/;
1515+ description = "Tool to produce a list of equations that approximately solve to a given number";
1616+ platforms = platforms.all;
1717+ maintainers = with maintainers; [ symphorien ];
1818+ license = licenses.gpl3Plus;
1919+ };
2020+}
2121+