sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / tools / misc / bitwise / default.nix
bloba01fa83b3c79ec07801b2f61cf2e9b8bd4665d9e
1 { lib, stdenv, fetchFromGitHub, ncurses, readline, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "bitwise";
5   version = "0.50";
7   src = fetchFromGitHub {
8     owner = "mellowcandle";
9     repo = "bitwise";
10     rev = "v${version}";
11     sha256 = "sha256-x+ky1X0c0bQZnkNvNNuXN2BoMDtDSCt/8dBAG92jCCQ=";
12   };
14   buildInputs = [ ncurses readline ];
15   nativeBuildInputs = [ autoreconfHook ];
17   meta = with lib; {
18     description = "Terminal based bitwise calculator in curses";
19     homepage = "https://github.com/mellowcandle/bitwise";
20     license = licenses.gpl3Only;
21     maintainers = [ maintainers.whonore ];
22     platforms = platforms.unix;
23     mainProgram = "bitwise";
24   };