]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/notmuch/notmuch-python/default.nix
Squash changes containing private information
[perso/Immae/Config/Nix.git] / pkgs / notmuch / notmuch-python / default.nix
diff --git a/pkgs/notmuch/notmuch-python/default.nix b/pkgs/notmuch/notmuch-python/default.nix
deleted file mode 100644 (file)
index d639d9a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-{ stdenv, notmuch, pythonPackages }:
-stdenv.mkDerivation rec {
-  name = "notmuch-${pythonPackages.python.name}-${version}";
-  version = notmuch.version;
-  outputs = [ "out" ];
-  buildInputs = with pythonPackages; [ sphinx python ];
-  src = notmuch.src;
-  phases = [ "unpackPhase" "buildPhase" "installPhase" "fixupPhase" ];
-  buildPhase = ''
-    cd bindings/python
-    python setup.py build
-    '';
-  installPhase = ''
-    python setup.py install --prefix=$out --optimize=1
-    '';
-}