bitwise 0.43 -> 0.50 https://repology.org/project/bitwise/versions attrpath: bitwise Checking auto update branch... No auto update branch exists Old version 0.43" not present in master derivation file with contents: { 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; }; }