Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e6ddc1872022
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 45b21b38a8ca
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 16, 2020

  1. tinygo: 0.12.0 -> 0.13.0

    xrelkd committed Apr 16, 2020
    Copy the full SHA
    9ce430f View commit details

Commits on Apr 18, 2020

  1. Merge pull request #85346 from xrelkd/update/tinygo

    tinygo: 0.12.0 -> 0.13.0
    marsam authored Apr 18, 2020
    Copy the full SHA
    45b21b3 View commit details
Showing with 4 additions and 4 deletions.
  1. +3 −3 pkgs/development/compilers/tinygo/default.nix
  2. +1 −1 pkgs/top-level/all-packages.nix
6 changes: 3 additions & 3 deletions pkgs/development/compilers/tinygo/default.nix
Original file line number Diff line number Diff line change
@@ -3,16 +3,16 @@

buildGoModule rec {
pname = "tinygo";
version = "0.12.0";
version = "0.13.0";

src = fetchFromGitHub {
owner = "tinygo-org";
repo = "tinygo";
rev = "v${version}";
sha256 = "0dw3kxf55p617pb0bj3knsqcfvap5scxlvhh3a9g9ia92kann4v1";
sha256 = "0x59j56y704m2hfkg78illgw9f6czrx265x887jfd989lnxphyqa";
};

modSha256 = "1bjq4vaf38hi204lr9w3r3wcy1rzj06ygi5gzfa7dl3kx10hw6p0";
modSha256 = "0y8n4mcr4jhas29ahvk8k4zbj1iz65fdpsgq61qa8kcsm8m5kqa6";
enableParallelBuilding = true;
subPackages = [ "." ];
buildInputs = [ llvm clang-unwrapped makeWrapper ];
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -9143,7 +9143,7 @@ in
tinycc = callPackage ../development/compilers/tinycc { };

tinygo = callPackage ../development/compilers/tinygo {
inherit (llvmPackages_9) llvm clang-unwrapped lld;
inherit (llvmPackages_10) llvm clang-unwrapped lld;
avrgcc = pkgsCross.avr.buildPackages.gcc;
};