Merge pull request #130299 from whonore/add-bitwise
This commit is contained in:
commit
d828b56a01
@ -11332,6 +11332,12 @@
|
||||
githubId = 19174984;
|
||||
name = "Alex Whitt";
|
||||
};
|
||||
whonore = {
|
||||
email = "wolfhonore@gmail.com";
|
||||
github = "whonore";
|
||||
githubId = 7121530;
|
||||
name = "Wolf Honoré";
|
||||
};
|
||||
wildsebastian = {
|
||||
name = "Sebastian Wild";
|
||||
email = "sebastian@wild-siena.com";
|
||||
|
24
pkgs/tools/misc/bitwise/default.nix
Normal file
24
pkgs/tools/misc/bitwise/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -1253,6 +1253,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 { } ;
|
||||
|
Loading…
Reference in New Issue
Block a user