summary refs log tree commit diff
path: root/lib/unpack-theme.nix
blob: 69d2eebe530cdbd6f4c7b8a22a1dca29ee1e54cd (plain) (blame)
1
2
3
4
5
6
7
{stdenv, theme}:

stdenv.mkDerivation {
  name = "theme";
  builder = ./unpack-theme.sh;
  inherit theme;
}