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