Merge pull request #127355 from cjab/programmer-calculator

This commit is contained in:
Sandro 2021-06-22 17:12:33 +02:00 committed by GitHub
commit b2a93084f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 0 deletions

View file

@ -1883,6 +1883,12 @@
githubId = 2131991;
name = "Elmo Todurov";
};
cjab = {
email = "chad+nixpkgs@jablonski.xyz";
github = "cjab";
githubId = 136485;
name = "Chad Jablonski";
};
ck3d = {
email = "ck3d@gmx.de";
github = "ck3d";

View file

@ -0,0 +1,34 @@
{ lib, gccStdenv, fetchFromGitHub, ncurses }:
gccStdenv.mkDerivation rec {
pname = "programmer-calculator";
version = "2.1";
src = fetchFromGitHub {
owner = "alt-romes";
repo = pname;
rev = "v${version}";
sha256 = "1vvpbj24ijl9ma0h669n9x0z1im3vqdf8zf2li0xf5h97b14gmv0";
};
buildInputs = [ ncurses ];
installPhase = ''
runHook preInstall
install -Dm 555 pcalc -t "$out/bin"
runHook postInstall
'';
meta = with lib; {
description = "A terminal calculator for programmers";
longDescription = ''
Terminal calculator made for programmers working with multiple number
representations, sizes, and overall close to the bits
'';
homepage = "https://alt-romes.github.io/programmer-calculator";
changelog = "https://github.com/alt-romes/programmer-calculator/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with lib.maintainers; [ cjab ];
platforms = platforms.all;
};
}

View file

@ -30252,6 +30252,8 @@ in
pcalc = callPackage ../applications/science/math/pcalc { };
programmer-calculator = callPackage ../applications/science/math/programmer-calculator { };
bcal = callPackage ../applications/science/math/bcal { };
pspp = callPackage ../applications/science/math/pspp { };