# nagnu
# messaging/forums/news
- #flrn slrn
+ flrn slrn
telegram-cli telegram-history-dump telegramircd
weechat profanity
newsboat irssi
# (nixos {}).manual.manpages
# note taking
- note terminal-velocity jrnl doing
+ note terminal-velocity jrnl doing nb
# office
sc-im ranger
telnet bind.dnsutils httpie ngrep nmap p0f socat lsof psmisc
wget patchelf rename tmux (lib.meta.hiPrio nettools)
vlock mosh manpages openssl openssl.doc openssl.man
- sshfs
+ sshfs ncdu
# other tools
pgloader s3cmd lftp jq cpulimit libxslt gandi-cli
mutt-ics = callPackage ./mutt-ics { inherit mylibs; };
nagios-cli = callPackage ./nagios-cli { inherit mylibs; };
nagnu = callPackage ./nagnu { inherit mylibs; };
+ nb = callPackage ./nb {};
note = callPackage ./note {};
notmuch-python2 = callPackage ./notmuch/notmuch-python { pythonPackages = python2Packages; };
notmuch-python3 = callPackage ./notmuch/notmuch-python { pythonPackages = python3Packages; };
--- /dev/null
+{ pkgs ? import <nixpkgs> {} }: with pkgs;
+stdenv.mkDerivation {
+ pname = "nb";
+ version = "e0d4e24-master";
+ src = fetchFromGitHub {
+ owner = "xwmx";
+ repo = "nb";
+ rev = "e0d4e24201299916d736be6a9800793cec32927e";
+ sha256 = "0gpnlzxjlfn3bagw74lsrmfhxj2xzvk6sjj24wp9rjpk42d9mfml";
+ };
+ phases = "installPhase";
+ installPhase = ''
+ mkdir -p $out/bin $out/share/zsh/vendor-completions $out/share/bash-completion/completions
+ cp $src/nb $out/bin/nb
+ chmod +x $out/bin/nb
+ patchShebangs $out/bin/nb
+ cp $src/etc/nb-completion.zsh $out/share/zsh/vendor-completions/_nb
+ cp $src/etc/nb-completion.bash $out/share/bash-completion/completions/nb
+ '';
+}