mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / ri / ries / package.nix
blob5c0626913e3c937bc1a6bca62313bb7d5db2fd27
1 { lib, stdenv, fetchzip }:
2 stdenv.mkDerivation rec {
3   pname = "ries";
4   version = "2018.04.11-1";
6   # upstream does not provide a stable link
7   src = fetchzip {
8     url = "https://salsa.debian.org/debian/ries/-/archive/debian/${version}/ries-debian-${version}.zip";
9     sha256 = "1h2wvd4k7f0l0i1vm9niz453xdbcs3nxccmri50qyrzzzc1b0842";
10   };
12   makeFlags = [ "PREFIX=$(out)" ];
14   meta = with lib; {
15     homepage = "https://mrob.com/pub/ries/";
16     description = "Tool to produce a list of equations that approximately solve to a given number";
17     mainProgram = "ries";
18     platforms = platforms.all;
19     maintainers = with maintainers; [ symphorien ];
20     license = licenses.gpl3Plus;
21   };