dablin: init at 1.11.0
This commit is contained in:
parent
ffabf51767
commit
a5bb4d3c22
28
pkgs/applications/radio/dablin/default.nix
Normal file
28
pkgs/applications/radio/dablin/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -17418,6 +17418,8 @@ in
|
|||||||
|
|
||||||
cyclone = callPackage ../applications/audio/pd-plugins/cyclone { };
|
cyclone = callPackage ../applications/audio/pd-plugins/cyclone { };
|
||||||
|
|
||||||
|
dablin = callPackage ../applications/radio/dablin { };
|
||||||
|
|
||||||
darcs = haskell.lib.overrideCabal (haskell.lib.justStaticExecutables haskellPackages.darcs) (drv: {
|
darcs = haskell.lib.overrideCabal (haskell.lib.justStaticExecutables haskellPackages.darcs) (drv: {
|
||||||
configureFlags = (stdenv.lib.remove "-flibrary" drv.configureFlags or []) ++ ["-f-library"];
|
configureFlags = (stdenv.lib.remove "-flibrary" drv.configureFlags or []) ++ ["-f-library"];
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user