Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9fa6a261fb23
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b158a30bb1db
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 14, 2018

  1. gitAndTools.grv: fix darwin build by using go 1.9

    cf. fsnotify/fsevents#40
    
    /cc ZHF #45961
    
    (cherry picked from commit 6b7cefd)
    mbode authored and LnL7 committed Sep 14, 2018
    Copy the full SHA
    b158a30 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/version-management/git-and-tools/grv/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ stdenv, buildGoPackage, fetchFromGitHub, curl, libgit2_0_27, ncurses, pkgconfig, readline }:
{ stdenv, buildGo19Package, fetchFromGitHub, curl, libgit2_0_27, ncurses, pkgconfig, readline }:
let
version = "0.2.0";
in
buildGoPackage {
buildGo19Package {
name = "grv-${version}";

buildInputs = [ ncurses readline curl libgit2_0_27 ];