about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/math/pcalc/default.nix
blob: 64ab5acebed2d011eb73f1e2873b54a5e127363d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchFromGitHub, bison, flex }:

stdenv.mkDerivation rec {
  pname = "pcalc";
  version = "20181202";

  src = fetchFromGitHub {
    owner = "vapier";
    repo = "pcalc";
    rev = "d93be9e19ecc0b2674cf00ec91cbb79d32ccb01d";
    sha256 = "sha256-m4xdsEJGKxLgp/d5ipxQ+cKG3z7rlvpPL6hELnDu6Hk=";
  };

  makeFlags = [ "DESTDIR= BINDIR=$(out)/bin" ];
  nativeBuildInputs = [ bison flex ];

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "https://vapier.github.io/pcalc/";
    description = "Programmer's calculator";
    mainProgram = "pcalc";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ ftrvxmtrx ];
    platforms = platforms.unix;
  };
}