mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ lib, swiftPackages, fetchFromGitHub }:
|
|
|
|
let
|
|
inherit (swiftPackages) apple_sdk stdenv swift;
|
|
arch = if stdenv.hostPlatform.isAarch64 then "arm64" else "x86_64";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "openwith";
|
|
version = "unstable-2022-10-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jdek";
|
|
repo = "openwith";
|
|
rev = "a8a99ba0d1cabee7cb470994a1e2507385c30b6e";
|
|
hash = "sha256-lysleg3qM2MndXeKjNk+Y9Tkk40urXA2ZdxY5KZNANo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ swift ];
|
|
|
|
buildInputs = with apple_sdk.frameworks; [ AppKit Foundation UniformTypeIdentifiers ];
|
|
|
|
makeFlags = [ "openwith_${arch}" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install openwith_${arch} -D $out/bin/openwith
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utility to specify which application bundle should open specific file extensions";
|
|
homepage = "https://github.com/jdek/openwith";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ zowoq ];
|
|
platforms = [ "aarch64-darwin" "x86_64-darwin" ];
|
|
};
|
|
}
|