8 lines
108 B
Nix
8 lines
108 B
Nix
|
{stdenv, theme}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "theme";
|
||
|
builder = ./unpack-theme.sh;
|
||
|
inherit theme;
|
||
|
}
|