Last active
June 19, 2016 23:59
-
-
Save tylerjl/1080e5d6a5535fdf20ea2dd52ff1d652 to your computer and use it in GitHub Desktop.
Attempting to add a python package dependency via derivation override.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
nixpkgs.config = { | |
packageOverrides = pkgs: rec { | |
matrix-synapse = pkgs.stdenv.lib.overrideDerivation pkgs.matrix-synapse (oldAttrs : { | |
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ pkgs.pythonPackages.psycopg2; | |
}); | |
}; | |
}; | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment