bitwise: init at 0.42

This commit is contained in:
whonore 2021-07-15 15:06:05 -04:00
parent 8b01f2c017
commit ab25d5fc78
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, ncurses, readline, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "bitwise";
version = "0.42";
src = fetchFromGitHub {
owner = "mellowcandle";
repo = "bitwise";
rev = "v${version}";
sha256 = "154y0sn3z64z56k84ghsazkyihbkaz40hfwxcxdymnhvhh6m9f3g";
};
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;
};
}

View file

@ -1249,6 +1249,8 @@ in
betterdiscord-installer = callPackage ../tools/misc/betterdiscord-installer { };
bitwise = callPackage ../tools/misc/bitwise { };
brakeman = callPackage ../development/tools/analysis/brakeman { };
brewtarget = libsForQt514.callPackage ../applications/misc/brewtarget { } ;