mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
base91: init at 0.1.0 (#409224)
This commit is contained in:
commit
e14ed26b8a
2 changed files with 44 additions and 0 deletions
|
@ -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";
|
||||
|
|
38
pkgs/by-name/ba/base91/package.nix
Normal file
38
pkgs/by-name/ba/base91/package.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue