Merge pull request #174680 from Mic92/nix-ld

nix-ld: disable build on non-linux platforms
This commit is contained in:
Rick van Schijndel 2022-05-27 15:51:50 +02:00 committed by GitHub
commit 6c5ca66f8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,6 +51,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/Mic92/nix-ld";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}