3
0
Fork 0
forked from mirrors/nixpkgs

ivy: 0.2.8 -> 0.2.10

This commit is contained in:
Mario Rodas 2023-05-01 04:20:00 +00:00
parent 120dd6a803
commit db0666b8dc
2 changed files with 6 additions and 6 deletions

View file

@ -2,19 +2,21 @@
buildGoModule rec {
pname = "ivy";
version = "0.2.8";
version = "0.2.10";
src = fetchFromGitHub {
rev = "v${version}";
owner = "robpike";
repo = "ivy";
sha256 = "sha256-pb/dJfEXz13myT6XadCg0kKd+n9bcHNBc84ES+hDw2Y=";
hash = "sha256-6rZfBx6jKNOEnG+cmrzgvjUoCHQe+olPeX11qX8ep38=";
};
vendorSha256 = null;
vendorHash = null;
subPackages = [ "." ];
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/robpike/ivy";
description = "ivy, an APL-like calculator";

View file

@ -16749,9 +16749,7 @@ with pkgs;
io = callPackage ../development/interpreters/io { };
ivy = callPackage ../development/interpreters/ivy {
buildGoModule = buildGo118Module; # tests fail with 1.19
};
ivy = callPackage ../development/interpreters/ivy { };
j = callPackage ../development/interpreters/j {
stdenv = clangStdenv;