summaryrefslogtreecommitdiff
path: root/lib/packages.nix
blob: 25e5eeffa5a631016827e71f448a422c2cbad1de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{ pkgs }:

# All common packages go here. Linux-specific should go in `linux.nix'

with pkgs;

let
  zebra = pkgs.stdenv.mkDerivation {
    name = "zebra";
    src = fetchGit {
      url = "https://github.com/jb55/zebra";
      ref = "master";
      rev = "8fd29bc1c2e9b7b695d61e0f1329c819f57f74bb";
      #sha256 = "11apyy90n26l3c4diqg8y8m4a4ndz9mp8nr8prcxkcsckpa3vqi2";
    };
    buildPhase = "make";
    installPhase = ''
      mkdir -p $out/bin
      cp ./zebra $out/bin
    '';
  };
in [
ag
aspellDicts.en
bat
cabal2nix
cloc
ctags
dhall
direnv
entr
eternal-terminal
expect
file
fd
font-awesome_5
git-lfs
htop
ispell
jq
lsof
material-icons
mononoki
ncdu
nix-prefetch-scripts
ormolu
pass
pianobar
pup
pwgen
python37Packages.black
ranger
ripgrep
shellcheck
tmux
tree
unrar
unzip
urlscan
vimpager
w3m
whois
zebra
zip
]