nixpkgs/pkgs/applications/backup/vdmfec/default.nix

20 lines
591 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2019-01-19 21:10:09 +00:00
stdenv.mkDerivation rec {
pname = "vdmfec";
2019-01-19 21:10:09 +00:00
version = "1.0";
src = fetchurl {
url = "http://members.tripod.com/professor_tom/archives/${pname}-${version}.tgz";
2019-01-19 21:10:09 +00:00
sha256 = "0i7q4ylx2xmzzq778anpkj4nqir5gf573n1lbpxnbc10ymsjq2rm";
};
meta = with lib; {
2019-01-19 21:10:09 +00:00
description = "A program that adds error correction blocks";
homepage = "http://members.tripod.com/professor_tom/archives/index.html";
maintainers = [ maintainers.ar1a ];
license = with licenses; [ gpl2 /* for vdmfec */ bsd2 /* for fec */ ];
platforms = platforms.all;
};
}