1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 11:06:44 +03:00

Merge pull request #244797 from emilytrau/hexfiend-platforms

hexfiend: fix platform meta
This commit is contained in:
Nick Cao 2023-07-22 06:37:02 -06:00 committed by GitHub
commit f0cb1580fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,8 @@ stdenv.mkDerivation rec {
homepage = "http://hexfiend.com/"; homepage = "http://hexfiend.com/";
changelog = "https://hexfiend.github.io/HexFiend/ReleaseNotes.html"; changelog = "https://hexfiend.github.io/HexFiend/ReleaseNotes.html";
license = licenses.bsd2; license = licenses.bsd2;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ eliandoran ]; maintainers = with maintainers; [ eliandoran ];
platforms = [ "x86_64-darwin" ]; platforms = platforms.darwin;
}; };
} }