depot/third_party/nixpkgs/pkgs/by-name/bi/bitwise/package.nix

35 lines
705 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
ncurses,
readline,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "bitwise";
version = "0.50";
src = fetchFromGitHub {
owner = "mellowcandle";
repo = "bitwise";
rev = "v${version}";
sha256 = "sha256-x+ky1X0c0bQZnkNvNNuXN2BoMDtDSCt/8dBAG92jCCQ=";
};
buildInputs = [
ncurses
readline
];
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Terminal based bitwise calculator in curses";
homepage = "https://github.com/mellowcandle/bitwise";
license = licenses.gpl3Only;
maintainers = [ maintainers.whonore ];
platforms = platforms.unix;
mainProgram = "bitwise";
};
}