Unverified Commit be42664d authored by Janik's avatar Janik Committed by GitHub
Browse files

Merge pull request #281728 from medv/patch-1

ephemeralpg: 3.1 -> 3.3, fix for nixos-update's runner
parents 145b4298 a4694f4f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -11970,6 +11970,12 @@
    githubId = 4641445;
    name = "Carlo Nucera";
  };
  medv = {
    email = "mikhail.advent@gmail.com";
    github = "medv";
    githubId = 1631737;
    name = "Mikhail Medvedev";
  };
  megheaiulian = {
    email = "iulian.meghea@gmail.com";
    github = "megheaiulian";
+5 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, postgresql, getopt, makeWrapper }:
stdenv.mkDerivation rec {
  pname = "ephemeralpg";
  version = "3.1";
  version = "3.3";
  src = fetchurl {
    url = "http://ephemeralpg.org/code/${pname}-${version}.tar.gz";
    sha256 = "1ap22ki8yz6agd0qybcjgs4b9izw1rwwcgpxn3jah2ccfyax34s6";
    url = "https://eradman.com/ephemeralpg/code/${pname}-${version}.tar.gz";
    hash = "sha256-pVQrfSpwJnxCRXAUpZQZsb0Z/wlLbjdaYmhVevgHrgo=";
  };
  nativeBuildInputs = [ makeWrapper ];
  installPhase = ''
@@ -15,8 +15,8 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "Run tests on an isolated, temporary PostgreSQL database";
    license = licenses.isc;
    homepage = "http://ephemeralpg.org/";
    homepage = "https://eradman.com/ephemeralpg/";
    platforms = platforms.all;
    maintainers = with maintainers; [ hrdinka ];
    maintainers = with maintainers; [ hrdinka medv ];
  };
}