From fe13e4fa6f588de76d22b0e95594c0905e75c99d Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 3 Jan 2021 08:40:11 +1000 Subject: [PATCH] go_2-dev: change pname/version to use unstable format otherwise this causes problems with stable go versions and nix-env --- pkgs/development/compilers/go/2-dev.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/go/2-dev.nix b/pkgs/development/compilers/go/2-dev.nix index 44ee67ca8f6..9af08dde19e 100644 --- a/pkgs/development/compilers/go/2-dev.nix +++ b/pkgs/development/compilers/go/2-dev.nix @@ -35,8 +35,8 @@ let in stdenv.mkDerivation rec { - pname = "go"; - version = "2"; + pname = "go2-unstable"; + version = "2020-12-08"; src = fetchgit { url = https://go.googlesource.com/go;