Merge pull request #230703 from Aleksanaa/base16384
base16384: init at 2.2.2
This commit is contained in:
commit
d78cc414c4
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/text/base16384/default.nix
Normal file
27
pkgs/tools/text/base16384/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -3071,6 +3071,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 { };
|
||||
|
|
Loading…
Reference in a new issue