Skip to content

Commit

Permalink
ephemeralpg: init at 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ocharles committed Jul 28, 2017
1 parent 6e5d2f8 commit 11e1330
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pkgs/applications/misc/ephemeralpg/default.nix
@@ -0,0 +1,15 @@
{ stdenv, fetchurl, postgresql, makeWrapper }:
stdenv.mkDerivation rec {
name = "ephemeralpg-${version}";
version = "2.2";
src = fetchurl {
url = "http://ephemeralpg.org/code/${name}.tar.gz";
sha256 = "1v48bcmc23zzqbha80p3spxd5l347qnjzs4z44wl80i2s8fdzlyz";
};
buildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out
PREFIX=$out make install
wrapProgram $out/bin/pg_tmp --prefix PATH : ${postgresql}/bin
'';
}

This comment has been minimized.

Copy link
@ocharles

ocharles via email Jul 30, 2017

Author Contributor
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -989,6 +989,8 @@ with pkgs;

esptool-ck = callPackage ../tools/misc/esptool-ck { };

ephemeralpg = callPackage ../applications/misc/ephemeralpg {};

f3 = callPackage ../tools/filesystems/f3 { };

facter = callPackage ../tools/system/facter {
Expand Down

0 comments on commit 11e1330

Please sign in to comment.