summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-07-28 21:27:48 +0200
committerGitHub <noreply@github.com>2019-07-28 21:27:48 +0200
commit77c845a93e0f5da751cc770c6206531dcb02c496 (patch)
tree87fac1a469493d550c2d0e1d1daba15be7bb5f42 /pkgs/applications/radio
parent40c3d403d6282364c1c0f9c36310ce111e596bed (diff)
parenta5bb4d3c222bde93094ef037f3fb480363cd5025 (diff)
downloadnixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.tar
nixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.tar.gz
nixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.tar.bz2
nixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.tar.lz
nixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.tar.xz
nixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.tar.zst
nixpkgs-77c845a93e0f5da751cc770c6206531dcb02c496.zip
Merge pull request #65330 from markuskowa/pr-dablin
dablin: init at 1.11.0
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/dablin/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/radio/dablin/default.nix b/pkgs/applications/radio/dablin/default.nix
new file mode 100644
index 00000000000..9b475b04511
--- /dev/null
+++ b/pkgs/applications/radio/dablin/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig
+, mpg123, SDL2, gnome3, faad2, pcre
+} :
+
+stdenv.mkDerivation rec {
+  pname = "dablin";
+  version = "1.11.0";
+
+  src = fetchFromGitHub {
+    owner = "Opendigitalradio";
+    repo = "dablin";
+    rev = "${version}";
+    sha256 = "04ir7yg7psnnb48s1qfppvvx6lak4s8f6fqdg721y2kd9129jm82";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  buildInputs = [ faad2 mpg123 SDL2 gnome3.gtkmm pcre ];
+
+  meta = with stdenv.lib; {
+    description = "Play DAB/DAB+ from ETI-NI aligned stream";
+    homepage = https://github.com/Opendigitalradio/dablin;
+    license = with licenses; [ gpl3 lgpl21 ];
+    platforms = platforms.linux;
+    maintainers = [ maintainers.markuskowa ];
+  };
+}
+