base16384: init at 2.2.2

This commit is contained in:
aleksana 2023-05-08 23:06:50 +08:00
parent 2909d9b117
commit d2e06ffe20
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "base16384";
version = "2.2.2";
src = fetchFromGitHub {
owner = "fumiama";
repo = pname;
rev = "v${version}";
hash = "sha256-5Dfu88aAVtpNAwHAo+LOxe+jpgDhNdHYkWex42dCK0s=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Encode binary files to printable utf16be";
homepage = "https://github.com/fumiama/base16384";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aleksana ];
platforms = platforms.all;
};
}

View File

@ -3050,6 +3050,8 @@ with pkgs;
base16-universal-manager = callPackage ../applications/misc/base16-universal-manager { };
base16384 = callPackage ../tools/text/base16384 { };
bashate = python3Packages.callPackage ../development/tools/bashate { };
bash-my-aws = callPackage ../tools/admin/bash-my-aws { };