librewolf: 132.0.1 -> 132.0.1-1 (#355483)
[NixPkgs.git] / pkgs / by-name / sp / spigot / tests / approximation.nix
blobfbf4875e1e619fa23ec3e31cc47a0a227e46afb5
1 { stdenv
2 , spigot
3 }:
5 stdenv.mkDerivation {
6   pname = "spigot-approximation";
7   inherit (spigot) version;
9   nativeBuildInputs = [ spigot ];
11   dontInstall = true;
13   buildCommand = ''
14     [ "$(spigot -b2 -d32 '(pi/1-355/113)')" = "-0.00000000000000000000010001111001" ]
15     [ "$(spigot -b2 -d32 '(e/1-1457/536)')" = "-0.00000000000000000001110101101011" ]
16     touch $out
17   '';
19   meta.timeout = 10;