mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +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" ```
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsNoGuiHook
|
|
, gst_all_1, glib-networking, gobject-introspection
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy";
|
|
version = "3.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-2OFav2HaQq/RphmZxLyL1n3suwzt1Y/d4h33EdbStjk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsNoGuiHook ];
|
|
|
|
buildInputs = with gst_all_1; [
|
|
glib-networking
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gst-plugins-rs
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gobject-introspection
|
|
] ++ (with pythonPackages; [
|
|
gst-python
|
|
pygobject3
|
|
pykka
|
|
requests
|
|
setuptools
|
|
tornado
|
|
] ++ lib.optional (!stdenv.hostPlatform.isDarwin) dbus-python
|
|
);
|
|
|
|
propagatedNativeBuildInputs = [
|
|
gobject-introspection
|
|
];
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.mopidy.com/";
|
|
description = "Extensible music server that plays music from local disk, Spotify, SoundCloud, and more";
|
|
mainProgram = "mopidy";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.fpletz ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|