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

Commits on Jan 16, 2021

  1. peco: 0.5.3 -> 0.5.8

    marsam committed Jan 16, 2021
    Copy the full SHA
    5684244 View commit details

Commits on Jan 17, 2021

  1. Merge pull request #109570 from marsam/update-peco

    peco: 0.5.3 -> 0.5.8
    SuperSandro2000 authored Jan 17, 2021
    Copy the full SHA
    4a2481f View commit details
Showing with 6 additions and 66 deletions.
  1. +6 −9 pkgs/tools/text/peco/default.nix
  2. +0 −57 pkgs/tools/text/peco/deps.nix
15 changes: 6 additions & 9 deletions pkgs/tools/text/peco/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "peco";
version = "0.5.3";
version = "0.5.8";

goPackagePath = "github.com/peco/peco";
subPackages = [ "cmd/peco" ];

src = fetchFromGitHub {
owner = "peco";
repo = "peco";
rev = "v${version}";
sha256 = "1m3s1jrrhqccgg3frfnq6iprwwi97j13wksckpcyrg51z6y5q041";
sha256 = "12xbqisk7bcy38fmjxcs069a0600gncbqzscqw6x37lgw6hlw52x";
};

goDeps = ./deps.nix;
vendorSha256 = "1p8pc50ql2vqnn0crx0y558i3m0d6vcdaj3995h3f0908pnk6x7q";

meta = with lib; {
description = "Simplistic interactive filtering tool";
homepage = "https://github.com/peco/peco";
changelog = "https://github.com/peco/peco/blob/v${version}/Changes";
license = licenses.mit;
# peco should work on Windows or other POSIX platforms, but the go package
# declares only linux and darwin.
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ pSub ];
};
}
57 changes: 0 additions & 57 deletions pkgs/tools/text/peco/deps.nix

This file was deleted.