nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5 autoreconfHook,
6}:
7
8stdenv.mkDerivation rec {
9 pname = "vdmfec";
10 version = "1.0";
11
12 src = fetchurl {
13 url = "http://members.tripod.com/professor_tom/archives/${pname}-${version}.tgz";
14 sha256 = "0i7q4ylx2xmzzq778anpkj4nqir5gf573n1lbpxnbc10ymsjq2rm";
15 };
16
17 nativeBuildInputs = [
18 autoreconfHook
19 ];
20
21 meta = {
22 description = "Program that adds error correction blocks";
23 homepage = "http://members.tripod.com/professor_tom/archives/index.html";
24 maintainers = [ lib.maintainers.ar1a ];
25 license = with lib.licenses; [
26 gpl2 # for vdmfec
27 bsd2 # for fec
28 ];
29 platforms = lib.platforms.all;
30 };
31}