nixpkgs/pkgs/by-name/tu/tuner/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

69 lines
1.1 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, pkg-config
, meson
, ninja
, vala
, glib
, itstool
, wrapGAppsHook3
, 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
wrapGAppsHook3
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 = "App to discover and play internet radio stations";
license = licenses.gpl3Plus;
platforms = platforms.linux;
mainProgram = "com.github.louis77.tuner";
maintainers = [ maintainers.abbe ];
};
}