about summary refs log tree commit diff
path: root/pkgs/applications/audio/tuner/default.nix
blob: 8262fa152bde9d900569ac822f1b8dc73ff2357d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ 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 = "An app to discover and play internet radio stations";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    mainProgram = "com.github.louis77.tuner";
    maintainers = [ maintainers.abbe ];
  };
}