mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #40614 from symphorien/ries
ries: init at 2018-04-11
This commit is contained in:
commit
97ab2d40cb
21
pkgs/applications/science/math/ries/default.nix
Normal file
21
pkgs/applications/science/math/ries/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchzip }:
|
||||
stdenv.mkDerivation {
|
||||
name = "ries-2018-04-11";
|
||||
|
||||
# upstream does not provide a stable link
|
||||
src = fetchzip {
|
||||
url = "https://salsa.debian.org/debian/ries/-/archive/debian/2018.04.11-1/ries-debian-2018.04.11-1.zip";
|
||||
sha256 = "1h2wvd4k7f0l0i1vm9niz453xdbcs3nxccmri50qyrzzzc1b0842";
|
||||
};
|
||||
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://mrob.com/pub/ries/;
|
||||
description = "Tool to produce a list of equations that approximately solve to a given number";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ symphorien ];
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
||||
|
@ -17693,6 +17693,8 @@ with pkgs;
|
||||
|
||||
ricochet = libsForQt5.callPackage ../applications/networking/instant-messengers/ricochet { };
|
||||
|
||||
ries = callPackage ../applications/science/math/ries { };
|
||||
|
||||
ripser = callPackage ../applications/science/math/ripser { };
|
||||
|
||||
rkt = callPackage ../applications/virtualization/rkt { };
|
||||
|
Loading…
Reference in New Issue
Block a user