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

let

  mpv = pkgs.mpv.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; }