pc: init at 0.4

This commit is contained in:
Jacob Moody 2023-07-18 17:44:27 -05:00
parent 37c6252cd1
commit 62c8209b53
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, stdenv
, byacc
, fetchFromSourcehut
, gitUpdater
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pc";
version = "0.4";
src = fetchFromSourcehut {
owner = "~ft";
repo = "pc";
rev = finalAttrs.version;
hash = "sha256-fzEDI20o5ROY9n/QRzCW66iCKYaBbI++Taur6EoA0wA=";
};
nativeBuildInputs = [ byacc ];
makeFlags = [ "PREFIX=$(out)" ];
strictDeps = true;
enableParallelBuilding = true;
passthru.updateScript = gitUpdater { };
meta = {
description = "Programmer's calculator";
homepage = "https://git.sr.ht/~ft/pc";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ moody ];
platforms = lib.platforms.unix;
};
})

View file

@ -5907,6 +5907,8 @@ with pkgs;
pbzx = callPackage ../tools/compression/pbzx { };
pc = callPackage ../tools/misc/pc { };
pcb2gcode = callPackage ../tools/misc/pcb2gcode { };
pcp = callPackage ../tools/misc/pcp { };