gavin-bc: init at 6.2.4

This is an implementation of the bc calculator by Gavin Howard.
This commit is contained in:
Anderson Torres
2023-02-14 22:41:05 -03:00
parent 42e8b41801
commit 024cab5905
2 changed files with 27 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ lib
, stdenv
, fetchFromGitea
}:
stdenv.mkDerivation (self: {
pname = "gavin-bc";
version = "6.2.4";
src = fetchFromGitea {
domain = "git.gavinhoward.com";
owner = "gavin";
repo = "bc";
rev = self.version;
hash = "sha256-KQheSyBbxh2ROOvwt/gqhJM+qWc+gDS/x4fD6QIYUWw=";
};
meta = {
homepage = "https://git.gavinhoward.com/gavin/bc";
description = "Gavin Howard's BC calculator implementation";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.AndersonTorres ];
platforms = lib.platforms.unix;
};
})
+2
View File
@@ -3658,6 +3658,8 @@ with pkgs;
bc = callPackage ../tools/misc/bc { };
gavin-bc = callPackage ../tools/misc/gavin-bc { };
bdf2psf = callPackage ../tools/misc/bdf2psf { };
bdf2sfd = callPackage ../tools/misc/bdf2sfd { };