summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/database/pg_tmp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/database/pg_tmp/default.nix')
-rw-r--r--pkgs/development/tools/database/pg_tmp/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/development/tools/database/pg_tmp/default.nix b/pkgs/development/tools/database/pg_tmp/default.nix
deleted file mode 100644
index b7d960d5af48..000000000000
--- a/pkgs/development/tools/database/pg_tmp/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ fetchFromBitbucket, stdenv }:
-
-stdenv.mkDerivation rec {
- name = "pg_tmp-${version}";
- version = "2.3";
-
- src = fetchFromBitbucket {
- owner = "eradman";
- repo = "ephemeralpg";
- rev = "ephemeralpg-${version}";
- sha256 = "0j0va9pch2xhwwx4li3qx3lkgrd79c0hcy5w5y1cqax571hv89wa";
- };
-
- installPhase = ''
- PREFIX=$out make install
- '';
-
- meta = with stdenv.lib; {
- homepage = http://ephemeralpg.org;
- description = "Run tests on an isolated, temporary PostgreSQL database";
- license = licenses.isc;
- platforms = platforms.all;
- maintainers = with maintainers; [ hrdinka ];
- };
-}