8 lines
133 B
Nix
8 lines
133 B
Nix
{ pkgs, ... }:
|
|
file:
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "toCSS";
|
|
buildCommand = ''
|
|
${pkgs.sass}/bin/scss ${file} $out
|
|
'';
|
|
}
|