Skip to content

Instantly share code, notes, and snippets.

@ck3d
Created February 25, 2023 15:50
Show Gist options
  • Save ck3d/d856c32ed50cf1c381b1db76241b37c4 to your computer and use it in GitHub Desktop.
Save ck3d/d856c32ed50cf1c381b1db76241b37c4 to your computer and use it in GitHub Desktop.
{ stdenv
, fetchurl
, vdr
, curl
}: stdenv.mkDerivation rec {
pname = "vdr-iptv";
version = "2.4.0";
src = fetchurl {
url = "http://www.saunalahti.fi/~rahrenbe/vdr/iptv/files/${pname}-${version}.tgz";
sha256 = "119iyggldbf22d5x6ayg723f0jza7pvvyni3mmxrmqw7zipipnbk";
};
buildInputs = [
curl
vdr
];
makeFlags = [ "DESTDIR=$(out)" ];
meta = with stdenv.lib; {
homepage = "http://www.saunalahti.fi/~rahrenbe/vdr/iptv/";
description = "This is an IPTV plugin for the Video Disk Recorder (VDR).";
maintainers = [ maintainers.ck3d ];
license = licenses.gpl2;
platforms = [ "i686-linux" "x86_64-linux" ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment