2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, postgresql, getopt, makeWrapper }:
|
2017-07-28 11:50:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ephemeralpg";
|
2020-10-24 20:11:39 +01:00
|
|
|
version = "3.1";
|
2017-07-28 11:50:47 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://ephemeralpg.org/code/${pname}-${version}.tar.gz";
|
2020-10-24 20:11:39 +01:00
|
|
|
sha256 = "1ap22ki8yz6agd0qybcjgs4b9izw1rwwcgpxn3jah2ccfyax34s6";
|
2017-07-28 11:50:47 +01:00
|
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
PREFIX=$out make install
|
2021-01-23 12:26:19 +00:00
|
|
|
wrapProgram $out/bin/pg_tmp --prefix PATH : ${lib.makeBinPath [ postgresql getopt ]}
|
2017-07-28 11:50:47 +01:00
|
|
|
'';
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2020-10-25 13:13:18 +00:00
|
|
|
description = "Run tests on an isolated, temporary PostgreSQL database";
|
2019-01-15 17:17:12 +00:00
|
|
|
license = licenses.isc;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ephemeralpg.org/";
|
2019-01-15 17:17:12 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ hrdinka ];
|
2017-07-31 12:16:48 +01:00
|
|
|
};
|
2017-07-28 11:50:47 +01:00
|
|
|
}
|