mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
126 lines
2.7 KiB
Nix
126 lines
2.7 KiB
Nix
{
|
|
lib,
|
|
intltool,
|
|
mkDerivation,
|
|
installShellFiles,
|
|
pkg-config,
|
|
fetchFromGitHub,
|
|
dbus-glib,
|
|
desktop-file-utils,
|
|
hicolor-icon-theme,
|
|
pcre,
|
|
qtbase,
|
|
sqlite,
|
|
taglib,
|
|
zlib,
|
|
gtk3,
|
|
libpeas,
|
|
libcddb,
|
|
libcdio,
|
|
gst_all_1,
|
|
withGstPlugins ? true,
|
|
glyr,
|
|
withGlyr ? true,
|
|
liblastfmSF,
|
|
withLastfm ? true,
|
|
libcdio-paranoia,
|
|
withCD ? true,
|
|
keybinder3,
|
|
withKeybinder ? false,
|
|
libnotify,
|
|
withLibnotify ? false,
|
|
libsoup_2_4,
|
|
withLibsoup ? false,
|
|
libgudev,
|
|
withGudev ? false, # experimental
|
|
libmtp,
|
|
withMtp ? false, # experimental
|
|
xfce,
|
|
withXfce4ui ? false,
|
|
totem-pl-parser,
|
|
withTotemPlParser ? false,
|
|
# , grilo, withGrilo ? false
|
|
# , rygel, withRygel ? true
|
|
}:
|
|
|
|
assert withGlyr -> withLastfm;
|
|
assert withLastfm -> withCD;
|
|
|
|
mkDerivation rec {
|
|
pname = "pragha";
|
|
version = "1.3.99.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pragha-music-player";
|
|
repo = "pragha";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-C4zh2NHqP4bwKMi5s+3AfEtKqxRlzL66H8OyNonGzxE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
intltool
|
|
pkg-config
|
|
xfce.xfce4-dev-tools
|
|
desktop-file-utils
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs =
|
|
with gst_all_1;
|
|
[
|
|
dbus-glib
|
|
gstreamer
|
|
gst-plugins-base
|
|
gtk3
|
|
hicolor-icon-theme
|
|
libpeas
|
|
pcre
|
|
qtbase
|
|
sqlite
|
|
taglib
|
|
zlib
|
|
]
|
|
++ lib.optionals withGstPlugins [
|
|
gst-plugins-good
|
|
gst-plugins-bad
|
|
gst-plugins-ugly
|
|
]
|
|
++ lib.optionals withCD [
|
|
libcddb
|
|
libcdio
|
|
libcdio-paranoia
|
|
]
|
|
++ lib.optional withGudev libgudev
|
|
++ lib.optional withKeybinder keybinder3
|
|
++ lib.optional withLibnotify libnotify
|
|
++ lib.optional withLastfm liblastfmSF
|
|
++ lib.optional withGlyr glyr
|
|
++ lib.optional withLibsoup libsoup_2_4
|
|
++ lib.optional withMtp libmtp
|
|
++ lib.optional withXfce4ui xfce.libxfce4ui
|
|
++ lib.optional withTotemPlParser totem-pl-parser
|
|
# ++ lib.optional withGrilo grilo
|
|
# ++ lib.optional withRygel rygel
|
|
;
|
|
|
|
CFLAGS = [ "-DHAVE_PARANOIA_NEW_INCLUDES" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${lib.getDev gst_all_1.gst-plugins-base}/include/gstreamer-1.0";
|
|
|
|
postInstall = ''
|
|
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
|
|
|
install -m 444 data/${pname}.desktop $out/share/applications
|
|
install -d $out/share/pixmaps
|
|
installManPage data/${pname}.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight GTK+ music manager - fork of Consonance Music Manager";
|
|
mainProgram = "pragha";
|
|
homepage = "https://pragha-music-player.github.io/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ mbaeten ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|