base91: init at 0.1.0 (#409224)

This commit is contained in:
Yohann Boniface 2025-05-23 22:35:20 +02:00 committed by GitHub
commit e14ed26b8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 44 additions and 0 deletions

View file

@ -6577,6 +6577,12 @@
github = "dottybot";
githubId = 12519979;
};
douzebis = {
email = "fred@atlant.is";
github = "douzebis";
githubId = 61088438;
name = "Frédéric Ruget";
};
dpaetzel = {
email = "david.paetzel@posteo.de";
github = "dpaetzel";

View file

@ -0,0 +1,38 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "base91";
version = "0.1.0";
src = fetchFromGitHub {
owner = "douzebis";
repo = "base91";
rev = "v${finalAttrs.version}";
hash = "sha256-Lx569OtNU0z884763FSByH0yXIq6GzeXyp5NVvMejco="; # update as needed
};
makeFlags = [
"CC=cc"
"-C"
"src"
"all"
];
installFlags = [
"-C"
"src"
"install"
"prefix=$(out)"
];
meta = {
description = "CLI tool for encoding binary data as ASCII characters";
homepage = "https://github.com/douzebis/base91";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ douzebis ];
platforms = lib.platforms.unix;
};
})