mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
29 lines
848 B
Nix
29 lines
848 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "mnemonicode";
|
|
version = "1.0.0";
|
|
src = fetchFromGitHub {
|
|
owner = "singpolyma";
|
|
repo = "mnemonicode";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-bGipPvLj6ig+lMLsl/Yve8PmuA93ETvhNKoMPh0JMBM=";
|
|
};
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv mnencode $out/bin
|
|
mv mndecode $out/bin
|
|
'';
|
|
meta = with lib; {
|
|
homepage = "https://github.com/singpolyma/mnemonicode";
|
|
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 = with maintainers; [ kirillrdy ];
|
|
mainProgram = "mnencode";
|
|
};
|
|
})
|