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

Commits on May 7, 2018

  1. pspg: 1.1.0 -> 1.1.1

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/pspg/versions.
    
    These checks were done:
    
    - built on NixOS
    - ran ‘/nix/store/g5s0d7h461nd55hnzp5k6v74dlfcz6dh-pspg-1.1.1/bin/pspg --help’ got 0 exit code
    - ran ‘/nix/store/g5s0d7h461nd55hnzp5k6v74dlfcz6dh-pspg-1.1.1/bin/pspg -V’ and found version 1.1.1
    - ran ‘/nix/store/g5s0d7h461nd55hnzp5k6v74dlfcz6dh-pspg-1.1.1/bin/pspg --version’ and found version 1.1.1
    - found 1.1.1 with grep in /nix/store/g5s0d7h461nd55hnzp5k6v74dlfcz6dh-pspg-1.1.1
    - directory tree listing: https://gist.github.com/ba99487fab26f86a314d4a727749a490
    R. RyanTM committed May 7, 2018
    Copy the full SHA
    3b4ee14 View commit details
  2. Merge pull request #40070 from r-ryantm/auto-update/pspg

    pspg: 1.1.0 -> 1.1.1
    Mic92 authored May 7, 2018
    Copy the full SHA
    d43f1dd View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/misc/pspg/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/misc/pspg/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "pspg-${version}";
version = "1.1.0";
version = "1.1.1";

src = fetchFromGitHub {
owner = "okbob";
repo = "pspg";
rev = "${version}";
sha256 = "10r6jfcqw4wclp84f07g3bda844csgm4sh7cjsnk2smmal7nhybs";
sha256 = "19jiixanyghasd2awkxx7c224fz01d9v0c4qxn4msvkny39m3gz9";
};

nativeBuildInputs = [ pkgconfig ];