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" ```
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform
|
|
, pkg-config, wrapGAppsHook3, CoreServices
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "muso";
|
|
version = "unstable-2021-09-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "quebin31";
|
|
repo = pname;
|
|
rev = "6dd1c6d3a82b21d4fb2606accf2f26179eb6eaf9";
|
|
hash = "sha256-09DWUER0ZWQuwfE3sjov2GjJNI7coE3D3E5iUy9mlSE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin CoreServices;
|
|
|
|
preConfigure = ''
|
|
substituteInPlace lib/utils.rs \
|
|
--replace "/usr/share/muso" "$out/share/muso"
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/muso
|
|
cp share/* $out/share/muso/
|
|
'';
|
|
|
|
cargoHash = "sha256-+UVUejKCfjC6zdW315wmu7f3A5GmnoQ3rIk8SK6LIRI=";
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Automatic music sorter (based on ID3 tags)";
|
|
mainProgram = "muso";
|
|
homepage = "https://github.com/quebin31/muso";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ crertel ];
|
|
};
|
|
}
|