2011-12-06 15:01:22 -08:00
|
|
|
{ stdenv, fetchurl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "dvb-apps-7f68f9c8d311";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://linuxtv.org/hg/dvb-apps/archive/7f68f9c8d311.tar.gz";
|
2011-12-06 15:01:22 -08:00
|
|
|
sha256 = "0a6c5jjq6ad98bj0r954l3n7zjb2syw9m19jksg06z4zg1z8yg82";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2019-06-19 08:36:06 -07:00
|
|
|
dontConfigure = true; # skip configure
|
2011-12-06 15:01:22 -08:00
|
|
|
|
|
|
|
installPhase = "make prefix=$out install";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Linux DVB API applications and utilities";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://linuxtv.org/";
|
2011-12-06 15:01:22 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2018-04-10 14:11:20 -07:00
|
|
|
broken = true; # 2018-04-10
|
2011-12-06 15:01:22 -08:00
|
|
|
};
|
|
|
|
}
|