Merge pull request #128626 from markuskowa/fix-libint

libint: restrict to x86_64-linux
This commit is contained in:
markuskowa
2021-06-29 22:37:31 +02:00
committed by GitHub

View File

@@ -71,6 +71,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/evaleev/libint";
license = with licenses; [ lgpl3Only gpl3Only ];
maintainers = [ maintainers.markuskowa ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}