Merge pull request #281728 from medv/patch-1

ephemeralpg: 3.1 -> 3.3, fix for nixos-update's runner
This commit is contained in:
Janik
2024-01-26 19:36:47 +01:00
committed by GitHub
2 changed files with 11 additions and 5 deletions
+6
View File
@@ -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";
@@ -1,10 +1,10 @@
{ 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 ];
};
}