pc: init at 0.4
This commit is contained in:
parent
37c6252cd1
commit
62c8209b53
2 changed files with 37 additions and 0 deletions
35
pkgs/tools/misc/pc/default.nix
Normal file
35
pkgs/tools/misc/pc/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue