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

Commits on Dec 24, 2019

  1. pspg: 2.6.0 -> 2.6.4

    r-ryantm committed Dec 24, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    aykevl Ayke
    Copy the full SHA
    48a85e5 View commit details

Commits on Jan 21, 2020

  1. pspg: 2.6.4 -> 2.6.6

    marsam committed Jan 21, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    aykevl Ayke
    Copy the full SHA
    64699ca View commit details
  2. pspg: enable on darwin

    marsam committed Jan 21, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    aykevl Ayke
    Copy the full SHA
    8af54fc View commit details

Commits on Jan 22, 2020

  1. Merge pull request #76367 from r-ryantm/auto-update/pspg

    pspg: 2.6.0 -> 2.6.4
    marsam authored Jan 22, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    aykevl Ayke
    Copy the full SHA
    8500d56 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/misc/pspg/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/misc/pspg/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig, readline }:
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig, readline, postgresql }:

stdenv.mkDerivation rec {
pname = "pspg";
version = "2.6.0";
version = "2.6.6";

src = fetchFromGitHub {
owner = "okbob";
repo = pname;
rev = version;
sha256 = "0cs0hsrrknl2cv39zzq4wydx5p7095hz18yly572fnniyi4ljbdg";
sha256 = "0l20ysr61y99zxvm8cqsgj7arv4m7h7gqq8lrq65bmh9fxncfpsd";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gnugrep ncurses readline ];
buildInputs = [ gnugrep ncurses readline postgresql ];

makeFlags = [ "PREFIX=${placeholder "out"}" ];

meta = with stdenv.lib; {
homepage = "https://github.com/okbob/pspg";
description = "Postgres Pager";
license = licenses.bsd2;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = [ maintainers.jlesquembre ];
};
}