summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <github@dotlambda.de>2023-11-03 09:00:58 -0700
committerGitHub <noreply@github.com>2023-11-03 09:00:58 -0700
commit4e530c29c8b860ddff42df8800279870d9ae93be (patch)
tree6f1de7fde88bdb1361da44ced0300faa97b58413 /pkgs
parent81093a6c4a2fa2223ef2fb819a61fa406df4c820 (diff)
Revert "libdeltachat: also install interactive repl"
This reverts commit 5016616e6bdc347af514110c877cf3635c0020c6.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libdeltachat/default.nix13
-rw-r--r--pkgs/development/python-modules/deltachat/default.nix7
2 files changed, 2 insertions, 18 deletions
diff --git a/pkgs/development/libraries/libdeltachat/default.nix b/pkgs/development/libraries/libdeltachat/default.nix
index d66fa031e2e04..8d110da2b2f27 100644
--- a/pkgs/development/libraries/libdeltachat/default.nix
+++ b/pkgs/development/libraries/libdeltachat/default.nix
@@ -1,5 +1,4 @@
 { lib
-, rust
 , stdenv
 , fetchFromGitHub
 , cargo
@@ -43,18 +42,6 @@ stdenv.mkDerivation rec {
     };
   };
 
-  outputs = [ "bin" "out" ];
-
-  preBuild = ''
-    cargo build \
-      --target ${rust.envVars.rustHostPlatformSpec} \
-      --release \
-      -p deltachat-repl \
-      --frozen \
-      -j $NIX_BUILD_CORES \
-      -Z unstable-options --out-dir $bin/bin/
-  '';
-
   nativeBuildInputs = [
     cmake
     perl
diff --git a/pkgs/development/python-modules/deltachat/default.nix b/pkgs/development/python-modules/deltachat/default.nix
index 6e31227e6b339..034be82d7e391 100644
--- a/pkgs/development/python-modules/deltachat/default.nix
+++ b/pkgs/development/python-modules/deltachat/default.nix
@@ -56,11 +56,8 @@ buildPythonPackage rec {
     "deltachat.message"
   ];
 
-  meta = {
+  meta = libdeltachat.meta // {
     description = "Python bindings for the Delta Chat Core library";
     homepage = "https://github.com/deltachat/deltachat-core-rust/tree/master/python";
-    license = lib.licenses.mpl20;
-    maintainers = with lib.maintainers; [ dotlambda srapenne ];
-    platforms = lib.platforms.unix;
-};
+  };
 }