mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
427 B
Nix
22 lines
427 B
Nix
final: prev: {
|
|
wofi-style = final.callPackage ({ stdenv, sass }: { base16 }:
|
|
stdenv.mkDerivation ({
|
|
pname = "wofi-style";
|
|
version = "0.0.1";
|
|
|
|
phases = [ "buildPhase" ];
|
|
|
|
src = ./wofi.sass;
|
|
|
|
nativeBuildInputs = [
|
|
sass
|
|
];
|
|
|
|
buildPhase = ''
|
|
substituteAll $src wofi-sub.sass
|
|
sass wofi-sub.sass $out --sourcemap=none --style expanded
|
|
'';
|
|
|
|
alpha = "80";
|
|
} // base16)) {};
|
|
}
|