mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
19 lines
506 B
Nix
19 lines
506 B
Nix
{ 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 = finalAttrs.pname;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
};
|
|
})
|