Created
February 25, 2023 15:50
-
-
Save ck3d/d856c32ed50cf1c381b1db76241b37c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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