about summary refs log tree commit diff
path: root/pkgs/development/tools/reshape/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/reshape/default.nix')
-rw-r--r--pkgs/development/tools/reshape/default.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/development/tools/reshape/default.nix b/pkgs/development/tools/reshape/default.nix
deleted file mode 100644
index 273b0577dc04..000000000000
--- a/pkgs/development/tools/reshape/default.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ lib
-, rustPlatform
-, fetchCrate
-, darwin
-, postgresqlTestHook
-, postgresql
-, stdenv
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "reshape";
-  version = "0.7.0";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-wv2gKyXCEH+tnZkUUAisMbuseth3dsFiJujH8VO1ii4=";
-  };
-
-  cargoHash = "sha256-VTJ3FNhVLgxo/VVBhk1yF9UUktLXcbrEkYwoyoWFhXA=";
-
-  buildInputs =
-    lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
-
-  nativeCheckInputs = [
-    postgresqlTestHook
-    postgresql
-  ];
-
-  dontUseCargoParallelTests = true;
-
-  postgresqlTestSetupPost = ''
-    export POSTGRES_CONNECTION_STRING="user=$PGUSER dbname=$PGDATABASE host=$PGHOST"
-  '';
-
-  postgresqlTestUserOptions = "LOGIN SUPERUSER";
-
-  meta = with lib; {
-    description = "Easy-to-use, zero-downtime schema migration tool for Postgres";
-    mainProgram = "reshape";
-    homepage = "https://github.com/fabianlindfors/reshape";
-    changelog = "https://github.com/fabianlindfors/reshape/releases/tag/v${version}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ ilyakooo0 ];
-  };
-}