1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Merge pull request #44229 from dtzWill/fix/rr-32bit

rr: enable on 32bit x86
This commit is contained in:
Jörg Thalheim 2018-07-30 14:20:22 +01:00 committed by GitHub
commit 67e2de195a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,6 +51,6 @@ stdenv.mkDerivation rec {
license = "custom";
maintainers = with stdenv.lib.maintainers; [ pierron thoughtpolice ];
platforms = ["x86_64-linux"];
platforms = stdenv.lib.platforms.x86;
};
}