gavin-bc: init at 6.2.4
This is an implementation of the bc calculator by Gavin Howard.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user