1
0
Fork 0

Fix platforms

This commit is contained in:
Daniel Kempkens 2022-08-05 22:44:34 +02:00
parent 83bdf9870a
commit 50d690cddb
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ jobs:
- run: nix build '.#proximity-sort'
- run: nix build '.#q'
x86_64-darwin:
build-x86_64-darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3

View file

@ -17,6 +17,6 @@ pkgs.rustPlatform.buildRustPackage rec {
description = "Simple command-line utility for sorting inputs by proximity to a path argument";
homepage = "https://github.com/jonhoo/proximity-sort";
license = [ licenses.asl20 licenses.mit ];
platforms = [ "x86_64-darwin" "aarch64-darwin" ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}