depot/third_party/nixpkgs/pkgs/misc/mnemonicode/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

27 lines
748 B
Nix

{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "mnemonicode";
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.all;
maintainers = [ ];
};
}