mnemonicode: init at 2015-11-30

mnemonicode is a set of routines which implement a method for encoding
binary data into a sequence of words which can be spoken over the phone,
for example, and converted back to data on the other side.
This commit is contained in:
Charles Strahan 2016-05-19 16:14:02 -04:00
parent 5d54038771
commit cd0d0944f9
No known key found for this signature in database
GPG Key ID: BB47AB4B8489B5A5
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "name-${version}";
version = "2015-11-30";
src = fetchFromGitHub {
owner = "singpolyma";
repo = "mnemonicode";
rev = "1687fabdf48acf68d4186f219bc20bffe02e8ee0";
sha256 = "0kp1jhhqfwfiqg9kx0mbyr4qh4yc4zg4szqk5fbf809nx2pvprm5";
};
installPhase = ''
mkdir -p $out/bin
cp mnencode $out/bin
cp mndecode $out/bin
'';
meta = with lib; {
description = ''
Routines which implement a method for encoding binary data into a sequence
of words which can be spoken over the phone, for example, and converted
back to data on the other side.
'';
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.cstrahan ];
};
}

View File

@ -16529,6 +16529,8 @@ in
m3d-linux = callPackage ../misc/drivers/m3d-linux { };
mnemonicode = callPackage ../misc/mnemonicode { };
mysqlWorkbench = newScope gnome ../applications/misc/mysql-workbench {
lua = lua5_1;
libctemplate = libctemplate_2_2;