1{lib, stdenv, fetchurl}:
2
3stdenv.mkDerivation rec {
4 pname = "libdvbcsa";
5 version = "1.1.0";
6
7 src = fetchurl {
8 url = "http://get.videolan.org/libdvbcsa/${version}/${pname}-${version}.tar.gz";
9 sha256 = "4db78af5cdb2641dfb1136fe3531960a477c9e3e3b6ba19a2754d046af3f456d";
10 };
11
12 doCheck = true;
13
14 meta = {
15 description = "A free implementation of the DVB Common Scrambling Algorithm with encryption and decryption capabilities";
16 homepage = "http://www.videolan.org/developers/libdvbcsa.html";
17 platforms = lib.platforms.unix;
18 license = lib.licenses.gpl2Only;
19 maintainers = with lib.maintainers; [ melias122 ];
20 };
21
22}