mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
19 lines
334 B
Nix
19 lines
334 B
Nix
{ stdenv, sass, base16 }:
|
|
|
|
stdenv.mkDerivation ({
|
|
pname = "firefox-tst-css";
|
|
version = "0.0.1";
|
|
|
|
phases = [ "buildPhase" ];
|
|
|
|
src = ./tst.sass;
|
|
|
|
buildInputs = [
|
|
sass
|
|
];
|
|
|
|
buildPhase = ''
|
|
substituteAll $src firefox-tst-substituted.sass
|
|
sass firefox-tst-substituted.sass $out --sourcemap=none
|
|
'';
|
|
} // base16)
|