nixpkgs/pkgs/applications/audio/shortwave/default.nix

88 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv
, lib
2020-03-22 19:56:22 +00:00
, fetchFromGitLab
, dbus
, desktop-file-utils
, gdk-pixbuf
, gettext
, gitMinimal
2020-03-22 19:56:22 +00:00
, glib
, gst_all_1
2021-06-22 13:00:11 +01:00
, gtk4
, libadwaita
2020-03-22 19:56:22 +00:00
, meson
, ninja
, openssl
, pkg-config
, python3
, rustPlatform
, sqlite
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
2020-03-22 19:56:22 +00:00
pname = "shortwave";
2021-06-22 13:00:11 +01:00
version = "2.0.1";
2020-03-22 19:56:22 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "Shortwave";
rev = version;
2021-06-22 13:00:11 +01:00
sha256 = "sha256-25qPb7qlqCwYJzl4qZxAZYx5asxSlXBlc/0dGyBdk1o=";
2020-03-22 19:56:22 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
2021-06-22 13:00:11 +01:00
hash = "sha256-00dQXcSNmdZb2nSLG3q7jm4sugF9XR4LbH0OmcuHVxA=";
};
2020-03-22 19:56:22 +00:00
nativeBuildInputs = [
desktop-file-utils
gettext
gitMinimal
2020-03-22 19:56:22 +00:00
glib # for glib-compile-schemas
meson
ninja
pkg-config
python3
rustPlatform.rust.cargo
rustPlatform.cargoSetupHook
rustPlatform.rust.rustc
2020-03-22 19:56:22 +00:00
wrapGAppsHook
];
buildInputs = [
dbus
gdk-pixbuf
glib
2021-06-22 13:00:11 +01:00
gtk4
libadwaita
2020-03-22 19:56:22 +00:00
openssl
sqlite
] ++ (with gst_all_1; [
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
]);
postPatch = ''
patchShebangs build-aux/meson/postinstall.py
'';
meta = with lib; {
2020-03-22 19:56:22 +00:00
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 ];
broken = true; # incompatible with latest libadwaita
2020-03-22 19:56:22 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}