Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
454 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildNimPackage,
fetchFromSourcehut,
}:
buildNimPackage (finalAttrs: {
pname = "base45";
version = "20230124";
src = fetchFromSourcehut {
owner = "~ehmry";
repo = "base45";
rev = finalAttrs.version;
hash = "sha256-9he+14yYVGt2s1IuRLPRsv23xnJzERkWRvIHr3PxFYk=";
};
meta = finalAttrs.src.meta // {
description = "Base45 library for Nim";
license = lib.licenses.unlicense;
mainProgram = "base45";
};
})