571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
102 lines
2.8 KiB
Nix
102 lines
2.8 KiB
Nix
{ stdenv, lib, fetchFromGitHub
|
|
, gobject-introspection, makeWrapper, wrapGAppsHook3
|
|
, gtk3, gst_all_1, python3
|
|
, gettext, adwaita-icon-theme, help2man, keybinder3, libnotify, librsvg, streamripper, udisks, webkitgtk_4_0
|
|
, iconTheme ? adwaita-icon-theme
|
|
, deviceDetectionSupport ? true
|
|
, documentationSupport ? true
|
|
, notificationSupport ? true
|
|
, scalableIconSupport ? true
|
|
, translationSupport ? true
|
|
, ipythonSupport ? false
|
|
, cdMetadataSupport ? false
|
|
, lastfmSupport ? false
|
|
, lyricsManiaSupport ? false
|
|
, multimediaKeySupport ? false
|
|
, musicBrainzSupport ? false
|
|
, podcastSupport ? false
|
|
, streamripperSupport ? false
|
|
, wikipediaSupport ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exaile";
|
|
version = "4.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "exaile";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-9SK0nvGdz2j6qp1JTmSuLezxX/kB93CZReSfAnfKZzg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
] ++ lib.optionals documentationSupport [
|
|
help2man
|
|
python3.pkgs.sphinx
|
|
python3.pkgs.sphinx-rtd-theme
|
|
] ++ lib.optional translationSupport gettext;
|
|
|
|
buildInputs = [
|
|
iconTheme
|
|
gtk3
|
|
] ++ (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-bad
|
|
gst-plugins-ugly
|
|
gst-libav
|
|
]) ++ (with python3.pkgs; [
|
|
berkeleydb
|
|
dbus-python
|
|
mutagen
|
|
pygobject3
|
|
pycairo
|
|
gst-python
|
|
]) ++ lib.optional deviceDetectionSupport udisks
|
|
++ lib.optional notificationSupport libnotify
|
|
++ lib.optional scalableIconSupport librsvg
|
|
++ lib.optional ipythonSupport python3.pkgs.ipython
|
|
++ lib.optional cdMetadataSupport python3.pkgs.discid
|
|
++ lib.optional lastfmSupport python3.pkgs.pylast
|
|
++ lib.optional lyricsManiaSupport python3.pkgs.lxml
|
|
++ lib.optional multimediaKeySupport keybinder3
|
|
++ lib.optional (musicBrainzSupport || cdMetadataSupport) python3.pkgs.musicbrainzngs
|
|
++ lib.optional podcastSupport python3.pkgs.feedparser
|
|
++ lib.optional wikipediaSupport webkitgtk_4_0;
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytest
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
doCheck = true;
|
|
preCheck = ''
|
|
substituteInPlace Makefile --replace "PYTHONPATH=$(shell pwd)" "PYTHONPATH=$PYTHONPATH:$(shell pwd)"
|
|
export PYTEST="py.test"
|
|
export XDG_CACHE_HOME=$(mktemp -d)
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/exaile \
|
|
--set PYTHONPATH $PYTHONPATH \
|
|
--prefix PATH : ${lib.makeBinPath ([ python3 ] ++ lib.optionals streamripperSupport [ streamripper ]) }
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.exaile.org/";
|
|
description = "Music player with a simple interface and powerful music management capabilities";
|
|
mainProgram = "exaile";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ ryneeverett ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|