about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-08-03 00:04:51 +0200
committerFelix Buehler <account@buehler.rocks>2021-08-03 00:04:51 +0200
commit5ac283b2374644777c435f1d8187b58deee0c55e (patch)
tree9b354c1c2e29a5ee8cca7b679a02964ae76d504b
parentbe219752d275c855bee3e2fd7a0d20a21c456a1c (diff)
tremc: deprecate phases
-rw-r--r--pkgs/applications/networking/p2p/tremc/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix
index dfbe66ac85628..3518c86790b7d 100644
--- a/pkgs/applications/networking/p2p/tremc/default.nix
+++ b/pkgs/applications/networking/p2p/tremc/default.nix
@@ -32,7 +32,8 @@ python3Packages.buildPythonApplication rec {
   ] ++
   lib.optional useGeoIP GeoIP;
 
-  phases = [ "unpackPhase" "installPhase" ];
+  dontBuild = true;
+  doCheck = false;
 
   makeWrapperArgs = ["--prefix PATH : ${wrapperPath}"];