summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-05-31 21:50:19 -0400
committerGitHub <noreply@github.com>2019-05-31 21:50:19 -0400
commit8c131d69304d8980e054e2bf087c7b1985914b72 (patch)
treeebabca2976aa94a521fb9dc9021b856088fe3dc0
parent1b23dbe6a1122cb1b2796255d0ec5b2e2c4a48ea (diff)
parentca2e283a28ef362bb8fc30eb20beb02c440b88f6 (diff)
downloadnixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.tar
nixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.tar.gz
nixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.tar.bz2
nixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.tar.lz
nixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.tar.xz
nixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.tar.zst
nixpkgs-8c131d69304d8980e054e2bf087c7b1985914b72.zip
Merge pull request #58182 from status-im/fix-conan
conan: fix pluginbase version requirement
-rw-r--r--pkgs/development/tools/build-managers/conan/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/conan/default.nix b/pkgs/development/tools/build-managers/conan/default.nix
index ed7babf4933..9c5d22ee07b 100644
--- a/pkgs/development/tools/build-managers/conan/default.nix
+++ b/pkgs/development/tools/build-managers/conan/default.nix
@@ -77,6 +77,11 @@ in newPython.pkgs.buildPythonApplication rec {
     mkdir -p "$HOME"
   '';
 
+  postPatch = ''
+    substituteInPlace conans/requirements_server.txt \
+      --replace "pluginbase>=0.5, < 1.0" "pluginbase>=0.5"
+  '';
+
   meta = with lib; {
     homepage = https://conan.io;
     description = "Decentralized and portable C/C++ package manager";