4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
73 lines
1.3 KiB
Nix
73 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkgconfig
|
|
, python3
|
|
, gsettings-desktop-schemas
|
|
, desktop-file-utils
|
|
, glib
|
|
, gtk3
|
|
, intltool
|
|
, libsoup
|
|
, json-glib
|
|
, wrapGAppsHook
|
|
, meson
|
|
, ninja
|
|
, vala
|
|
, sqlite
|
|
, gst_all_1
|
|
, gst_plugins ? with gst_all_1; [ gst-plugins-good gst-plugins-ugly ]
|
|
}:
|
|
let
|
|
version = "7.3";
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "gradio";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "haecker-felix";
|
|
repo = "gradio";
|
|
rev = "v${version}";
|
|
sha256 = "00982dynl36lpsrx3mkd2a479zsrc8jvwfb8i7pi6w7fzzd8n8bl";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
|
|
meson
|
|
ninja
|
|
vala
|
|
|
|
python3
|
|
];
|
|
buildInputs = [
|
|
sqlite
|
|
|
|
glib
|
|
intltool
|
|
libsoup
|
|
json-glib
|
|
|
|
gtk3
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
|
|
wrapGAppsHook
|
|
desktop-file-utils
|
|
gsettings-desktop-schemas
|
|
] ++ gst_plugins;
|
|
|
|
enableParallelBuilding = true;
|
|
postInstall = ''
|
|
glib-compile-schemas "$out"/share/glib-2.0/schemas
|
|
'';
|
|
|
|
patches = [ ./0001-Remove-post-install-script-that-hardcodes-paths.patch ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/haecker-felix/gradio";
|
|
description = "A GTK3 app for finding and listening to internet radio stations";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.samdroid-apps ];
|
|
};
|
|
}
|