mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
+ various CLI goodies
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
let
|
||||
daybook = pkgs.callPackage ../packages/daybook.nix {};
|
||||
iolanguage = pkgs.callPackage ../packages/iolanguage.nix {};
|
||||
sncli = pkgs.python3Packages.callPackage ../packages/sncli.nix {};
|
||||
todoist = pkgs.callPackage ../packages/todoist {};
|
||||
haskells = import ../dot/haskells.nix;
|
||||
unstable = import <nixos-unstable> {};
|
||||
@@ -68,16 +69,18 @@ in with pkgs;
|
||||
] ++ [ # shell
|
||||
bat
|
||||
dos2unix
|
||||
exa
|
||||
fd
|
||||
file
|
||||
git
|
||||
gitAndTools.hub
|
||||
gitstats
|
||||
jq
|
||||
manpages
|
||||
moreutils
|
||||
patch
|
||||
patchutils
|
||||
posix_man_pages
|
||||
most
|
||||
ranger
|
||||
ripgrep
|
||||
rlwrap
|
||||
@@ -119,6 +122,7 @@ in with pkgs;
|
||||
chicken
|
||||
clojure
|
||||
gcc
|
||||
binutils-unwrapped
|
||||
(haskellPackages.ghcWithHoogle haskells)
|
||||
(executables haskellPackages.cabal-install)
|
||||
(executables haskellPackages.ghcid)
|
||||
@@ -150,7 +154,9 @@ in with pkgs;
|
||||
audacity
|
||||
calibre
|
||||
inkscape
|
||||
poppler_utils
|
||||
xpdf
|
||||
pdfgrep
|
||||
pdftk
|
||||
spotify
|
||||
youtubeDL
|
||||
] ++ [ # cloud
|
||||
@@ -170,11 +176,12 @@ in with pkgs;
|
||||
daybook
|
||||
gnupg
|
||||
jo
|
||||
jq
|
||||
memo
|
||||
par
|
||||
pass
|
||||
qrencode
|
||||
sncli
|
||||
tmuxp
|
||||
unstable.hledger
|
||||
wordnet
|
||||
xsv
|
||||
|
||||
22
packages/sncli.nix
Normal file
22
packages/sncli.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ buildPythonPackage, buildPythonApplication, fetchPypi, requests, urwid }:
|
||||
let
|
||||
Simperium3 = buildPythonPackage rec {
|
||||
pname = "Simperium3";
|
||||
version = "0.1.3";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1j1w4dji39v44l96qq9kbrxpcjkjmika8065gwy8bf847f9fa76p";
|
||||
};
|
||||
propagatedBuildInputs = [ requests ];
|
||||
};
|
||||
in buildPythonApplication rec {
|
||||
pname = "sncli";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18s5a6s2z7k14cbiyfdf98kw92r2hf1xwaavx67dxhadxm18xr4v";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests urwid Simperium3 ];
|
||||
}
|
||||
Reference in New Issue
Block a user