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