commit
3cac599628
@ -341,6 +341,11 @@
|
||||
github = "apeyroux";
|
||||
name = "Alexandre Peyroux";
|
||||
};
|
||||
ar1a = {
|
||||
email = "aria@ar1as.space";
|
||||
github = "ar1a";
|
||||
name = "Aria Edmonds";
|
||||
};
|
||||
arcadio = {
|
||||
email = "arc@well.ox.ac.uk";
|
||||
github = "arcadio";
|
||||
|
19
pkgs/applications/backup/vdmfec/default.nix
Normal file
19
pkgs/applications/backup/vdmfec/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vdmfec-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://members.tripod.com/professor_tom/archives/${name}.tgz";
|
||||
sha256 = "0i7q4ylx2xmzzq778anpkj4nqir5gf573n1lbpxnbc10ymsjq2rm";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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;
|
||||
};
|
||||
}
|
@ -5986,6 +5986,8 @@ in
|
||||
|
||||
vampire = callPackage ../applications/science/logic/vampire {};
|
||||
|
||||
vdmfec = callPackage ../applications/backup/vdmfec {};
|
||||
|
||||
vk-messenger = callPackage ../applications/networking/instant-messengers/vk-messenger {};
|
||||
|
||||
volatility = callPackage ../tools/security/volatility { };
|
||||
|
Loading…
Reference in New Issue
Block a user