home-assistant-custom-components.homematicip_local: 1.73.0 -> 1.74.0 (#364289)
[NixPkgs.git] / pkgs / by-name / sp / spigot / tests / approximation.nix
blob0062d4449c2f21c3c074033dd0c206e9c0759950
2   stdenv,
3   spigot,
4 }:
6 stdenv.mkDerivation {
7   pname = "spigot-approximation";
8   inherit (spigot) version;
10   nativeBuildInputs = [ spigot ];
12   dontInstall = true;
14   buildCommand = ''
15     [ "$(spigot -b2 -d32 '(pi/1-355/113)')" = "-0.00000000000000000000010001111001" ]
16     [ "$(spigot -b2 -d32 '(e/1-1457/536)')" = "-0.00000000000000000001110101101011" ]
17     touch $out
18   '';
20   meta.timeout = 10;