Fix platforms
This commit is contained in:
parent
83bdf9870a
commit
50d690cddb
2 changed files with 2 additions and 2 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- run: nix build '.#proximity-sort'
|
- run: nix build '.#proximity-sort'
|
||||||
- run: nix build '.#q'
|
- run: nix build '.#q'
|
||||||
|
|
||||||
x86_64-darwin:
|
build-x86_64-darwin:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
|
@ -17,6 +17,6 @@ pkgs.rustPlatform.buildRustPackage rec {
|
||||||
description = "Simple command-line utility for sorting inputs by proximity to a path argument";
|
description = "Simple command-line utility for sorting inputs by proximity to a path argument";
|
||||||
homepage = "https://github.com/jonhoo/proximity-sort";
|
homepage = "https://github.com/jonhoo/proximity-sort";
|
||||||
license = [ licenses.asl20 licenses.mit ];
|
license = [ licenses.asl20 licenses.mit ];
|
||||||
platforms = [ "x86_64-darwin" "aarch64-darwin" ];
|
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue