85 lines
1.6 KiB
Nix
85 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitLab
|
|
, dbus
|
|
, desktop-file-utils
|
|
, gdk-pixbuf
|
|
, gettext
|
|
, gitMinimal
|
|
, glib
|
|
, gst_all_1
|
|
, gtk4
|
|
, libadwaita
|
|
, meson
|
|
, ninja
|
|
, openssl
|
|
, pkg-config
|
|
, rustPlatform
|
|
, sqlite
|
|
, wrapGAppsHook4
|
|
, cmake
|
|
, libshumate
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "shortwave";
|
|
version = "3.0.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "Shortwave";
|
|
rev = version;
|
|
sha256 = "sha256-qwk63o9pfqpAm6l9ioj3RccacemQU8R6LF6El4yHkjQ";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-YrB322nv9CgZqt5//VMvVwjWA51ePlX2PI6raRJGBxA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
gettext
|
|
gitMinimal
|
|
glib # for glib-compile-schemas
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
rustPlatform.rust.cargo
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.rust.rustc
|
|
wrapGAppsHook4
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
gdk-pixbuf
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
openssl
|
|
sqlite
|
|
libshumate
|
|
] ++ (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-bad
|
|
]);
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/World/Shortwave";
|
|
description = "Find and listen to internet radio stations";
|
|
longDescription = ''
|
|
Shortwave is a streaming audio player designed for the GNOME
|
|
desktop. It is the successor to the older Gradio application.
|
|
'';
|
|
maintainers = with maintainers; [ lasandell ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|