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: 5946143312a2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c7739191daf5
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Jul 5, 2017

  1. elvish: 0.5 -> 0.9

    tjikini authored Jul 5, 2017
    Copy the full SHA
    eca3e8c View commit details

Commits on Jul 7, 2017

  1. elvish: remove unnecessary deps.nix

    fully vendorized now
    Mic92 committed Jul 7, 2017
    Copy the full SHA
    9728c26 View commit details
  2. Merge pull request #27158 from tjikini/elvish

    elvish: 0.5 -> 0.9
    Mic92 authored Jul 7, 2017
    Copy the full SHA
    c773919 View commit details
Showing with 3 additions and 25 deletions.
  1. +3 −5 pkgs/shells/elvish/default.nix
  2. +0 −20 pkgs/shells/elvish/deps.nix
8 changes: 3 additions & 5 deletions pkgs/shells/elvish/default.nix
Original file line number Diff line number Diff line change
@@ -2,21 +2,19 @@

buildGoPackage rec {
name = "elvish-${version}";
version = "0.5";
version = "0.9";

goPackagePath = "github.com/elves/elvish";

src = fetchFromGitHub {
repo = "elvish";
owner = "elves";
rev = version;
sha256 = "1dk5f8a2wpgd5cw45ippvx46fxk0yap64skfpzpiqz8bkbnrwbz6";
sha256 = "0alsv04iihrk1nffp6fmyzxid26dqhg1k45957c2ymyzyq9cglxj";
};

goDeps = ./deps.nix;

meta = with stdenv.lib; {
description = "A Novel unix shell in go language";
description = "A friendly and expressive Unix shell";
homepage = https://github.com/elves/elvish;
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ];
20 changes: 0 additions & 20 deletions pkgs/shells/elvish/deps.nix

This file was deleted.