Merge pull request #206687 from wahjava/init-tuner
tuner: init at 1.5.1
This commit is contained in:
commit
c010f15db6
2 changed files with 70 additions and 0 deletions
68
pkgs/applications/audio/tuner/default.nix
Normal file
68
pkgs/applications/audio/tuner/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, meson
|
||||
, ninja
|
||||
, vala
|
||||
, glib
|
||||
, itstool
|
||||
, wrapGAppsHook
|
||||
, desktop-file-utils
|
||||
, libsoup
|
||||
, json-glib
|
||||
, geoclue2
|
||||
, geocode-glib
|
||||
, libgee
|
||||
, gtk3
|
||||
, pantheon
|
||||
, gst_all_1
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tuner";
|
||||
version = "1.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "louis77";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-tG1AMEqHcp4jHNgWDy9fS2FtlxFTlpMD5MVbepIY+GY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
vala
|
||||
glib
|
||||
itstool
|
||||
wrapGAppsHook
|
||||
desktop-file-utils
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libsoup
|
||||
json-glib
|
||||
geoclue2
|
||||
geocode-glib
|
||||
libgee
|
||||
glib
|
||||
gtk3
|
||||
pantheon.granite
|
||||
gst_all_1.gstreamer
|
||||
gst_all_1.gst-plugins-base
|
||||
gst_all_1.gst-plugins-bad
|
||||
gst_all_1.gst-plugins-good
|
||||
gst_all_1.gst-plugins-ugly
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/louis77/tuner";
|
||||
description = "An app to discover and play internet radio stations";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
mainProgram = "com.github.louis77.tuner";
|
||||
maintainers = [ maintainers.abbe ];
|
||||
};
|
||||
}
|
|
@ -38239,4 +38239,6 @@ with pkgs;
|
|||
widevine-cdm = callPackage ../applications/networking/browsers/misc/widevine-cdm.nix { };
|
||||
|
||||
alsa-scarlett-gui = callPackage ../applications/audio/alsa-scarlett-gui { };
|
||||
|
||||
tuner = callPackage ../applications/audio/tuner { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue