aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/video/dvb-apps/default.nix
blob: 8fa88e32449470984967d5083443e966ed606d6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation {
  name = "dvb-apps-7f68f9c8d311";

  src = fetchurl {
    url = "https://linuxtv.org/hg/dvb-apps/archive/7f68f9c8d311.tar.gz";
    sha256 = "0a6c5jjq6ad98bj0r954l3n7zjb2syw9m19jksg06z4zg1z8yg82";
  };

  buildInputs = [ perl ];

  dontConfigure = true; # skip configure

  installPhase = "make prefix=$out install";

  meta = {
    description = "Linux DVB API applications and utilities";
    homepage = "https://linuxtv.org/";
    platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.gpl2;
    broken = true; # 2018-04-10
  };
}