about summary refs log tree commit diff
path: root/collections/aszlig.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-01-09 21:12:12 +0100
committeraszlig <aszlig@redmoonstudios.org>2013-01-09 21:12:12 +0100
commit7f2e3955a124e5f645537c5583b1a2f6bd321238 (patch)
tree8dc5f55f30f191da8b1a1d06a2ba994415e251cd /collections/aszlig.nix
parent62a211e4bb61d47356d9c00357e8b8eaa2b11dc1 (diff)
nixpkgs: Move package list into ../collections.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'collections/aszlig.nix')
-rw-r--r--collections/aszlig.nix81
1 files changed, 81 insertions, 0 deletions
diff --git a/collections/aszlig.nix b/collections/aszlig.nix
new file mode 100644
index 00000000..f820c749
--- /dev/null
+++ b/collections/aszlig.nix
@@ -0,0 +1,81 @@
+pkgs:
+
+{
+  haskell = with pkgs.haskellPackages; [
+    ghc cabalInstall hlint
+    darcs
+    diagrams
+    yesod yesodStatic yesodDefault yesodTest
+    hjsmin persistentSqlite
+  ];
+
+  python = with pkgs.pythonPackages; [
+    pkgs.python3
+    pkgs.python
+    pep8
+    polib
+  ];
+
+  shell = with pkgs; [
+    zsh dash
+    taskwarrior
+    screen
+    htop
+    bc
+    lftp
+    mmv
+    ncdu
+    surfraw
+    w3m
+    fbida
+    mutt
+    vlock
+  ];
+
+  multimedia = with pkgs; [
+    pulseaudio pvolctrl
+    MPlayer
+    vorbisTools
+    mpg321
+    mp3info
+  ];
+
+  crypto = with pkgs; [
+    gnupg1compat openssh
+    keychain
+  ];
+
+  dev = with pkgs; [
+    manpages
+    posix_man_pages
+    gitFull
+    gdb
+    gnumake
+    vim_configurable
+    ltrace strace
+  ];
+
+  net = with pkgs; [
+    netrw
+    nmap
+    socat
+  ];
+
+  x11 = with pkgs; [
+    i3 i3lock i3status dmenu conky
+    tkabber
+    tkabber_plugins
+    xpdf
+  ];
+
+  misc = with pkgs; [
+    lastwatch
+    chromiumBetaWrapper
+    glxinfo
+    imagemagick
+    graphviz
+    youtubeDL
+    ghostscript
+    rtorrent
+  ];
+}