Merge pull request #169028 from jtojnar/osdlyrics
osdlyrics: init at 0.5.10
This commit is contained in:
commit
298d372393
87
pkgs/applications/audio/osdlyrics/default.nix
Normal file
87
pkgs/applications/audio/osdlyrics/default.nix
Normal file
@ -0,0 +1,87 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
|
||||
, autoreconfHook
|
||||
, pkg-config
|
||||
, intltool
|
||||
|
||||
, glib
|
||||
, gtk2
|
||||
, dbus-glib
|
||||
, libappindicator-gtk2
|
||||
, libnotify
|
||||
, python3
|
||||
, runtimeShell
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "osdlyrics";
|
||||
version = "0.5.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "osdlyrics";
|
||||
repo = "osdlyrics";
|
||||
rev = version;
|
||||
sha256 = "sha256-x9gIT1JkfPIc4RmmQJLv9rOG2WqAftoTK5uiRlS65zU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
intltool
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gtk2
|
||||
dbus-glib
|
||||
libappindicator-gtk2
|
||||
libnotify
|
||||
python3.pkgs.wrapPython
|
||||
(python3.withPackages (pp: with pp; [
|
||||
chardet
|
||||
dbus-python
|
||||
future
|
||||
pycurl
|
||||
pygobject3
|
||||
]))
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
extractExecLine() {
|
||||
serviceFile=$1
|
||||
program=$2
|
||||
|
||||
execLine=$(grep --only-matching --perl-regexp 'Exec=\K(.+)' "$serviceFile")
|
||||
echo "#!${runtimeShell}" > "$program"
|
||||
echo "exec $execLine" >> "$program"
|
||||
chmod +x "$program"
|
||||
|
||||
substituteInPlace "$serviceFile" \
|
||||
--replace "Exec=$execLine" "Exec=$program"
|
||||
}
|
||||
|
||||
# Extract the exec line into a separate program so that it can be wrapped.
|
||||
mkdir -p "$out/libexec/osdlyrics/"
|
||||
for svcFile in "$out/share/dbus-1/services"/*; do
|
||||
svc=$(basename "$svcFile" ".service")
|
||||
if grep "python" "$svcFile"; then
|
||||
extractExecLine "$svcFile" "$out/libexec/osdlyrics/$svc"
|
||||
fi
|
||||
done
|
||||
|
||||
for p in "$out/bin/osdlyrics-create-lyricsource" "$out/bin/osdlyrics-daemon" "$out/libexec/osdlyrics"/*; do
|
||||
wrapProgram "$p" \
|
||||
--prefix PYTHONPATH : "$out/${python3.sitePackages}"
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Standalone lyrics fetcher/displayer";
|
||||
homepage = "https://github.com/osdlyrics/osdlyrics";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -3964,6 +3964,8 @@ with pkgs;
|
||||
|
||||
oil-buku = callPackage ../applications/misc/oil-buku { };
|
||||
|
||||
osdlyrics = callPackage ../applications/audio/osdlyrics { };
|
||||
|
||||
ossutil = callPackage ../tools/admin/ossutil {};
|
||||
|
||||
pastel = callPackage ../applications/misc/pastel {
|
||||
|
Loading…
Reference in New Issue
Block a user