Skip to content

Commit

Permalink
go: fix eval for binary derivation (NixOS#339558)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa authored Sep 4, 2024
2 parents 08eabd4 + cc15cb6 commit 8075943
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/development/compilers/go/binary.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, version, hashes }:
{ lib, stdenv, fetchurl, version, hashes }:
let
toGoKernel = platform:
if platform.isDarwin then "darwin"
Expand Down Expand Up @@ -37,13 +37,13 @@ stdenv.mkDerivation {
runHook postInstall
'';

meta = with lib; {
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
meta = {
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
changelog = "https://go.dev/doc/devel/release#go${lib.versions.majorMinor version}";
description = "The Go Programming language";
homepage = "https://go.dev/";
license = licenses.bsd3;
maintainers = teams.golang.members;
platforms = platforms.darwin ++ platforms.linux;
license = lib.licenses.bsd3;
maintainers = lib.teams.golang.members;
platforms = lib.platforms.darwin ++ lib.platforms.linux;
};
}

0 comments on commit 8075943

Please sign in to comment.