filter result

This commit is contained in:
shimun 2020-10-30 16:23:49 +01:00
parent 65dc8de490
commit c9894ab68a
Signed by: shimun
GPG Key ID: E81D8382DC2F971B

View File

@ -9,7 +9,7 @@ in
with pkgs; stdenv.mkDerivation {
name = "solo";
outputs = [ "out" ];
src = with lib; builtins.filterSource (path: type: !(hasSuffix path "hex" || hasSuffix path "sha256")) src;
src = with lib; builtins.filterSource (path: type: !(hasSuffix path "hex" || hasSuffix path "sha256" || baseNameOf path == "result")) src;
buildInputs = [ gnumake gcc gcc-arm-embedded-8 git python-with-my-packages ];
phases = [ "unpackPhase" "configurePhase" "buildPhase" "installPhase" ];
installPhase = ''