about summary refs log tree commit diff
path: root/machines/sternenseemann/pkgs.nix
blob: e580c4dad0e6b8e7ee4823a4479f14f80e04189c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, lib }:

let

  mpv = pkgs.mpv-with-scripts.override {
    scripts = [ pkgs.mpvScripts.convert ];
  };

  texlive = with pkgs.texlive; combine { inherit scheme-medium minted units collection-bibtexextra wrapfig libertine enumitem dashrule ifmtarg xstring; };

  urxvt = pkgs.rxvt_unicode-with-plugins.override { plugins = [ pkgs.urxvt_perls ]; };

in { inherit mpv texlive urxvt; }