vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / backup / vdmfec / default.nix
blob20dda868a66436e0f869b5a429605c4101e535f6
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "vdmfec";
5   version = "1.0";
7   src = fetchurl {
8     url = "http://members.tripod.com/professor_tom/archives/${pname}-${version}.tgz";
9     sha256 = "0i7q4ylx2xmzzq778anpkj4nqir5gf573n1lbpxnbc10ymsjq2rm";
10   };
12   meta = with lib; {
13     description = "Program that adds error correction blocks";
14     homepage = "http://members.tripod.com/professor_tom/archives/index.html";
15     maintainers = [ maintainers.ar1a ];
16     license = with licenses; [ gpl2 /* for vdmfec */ bsd2 /* for fec */ ];
17     platforms = platforms.all;
18   };