Compare commits
No commits in common. "0aaa59b7e20e4d164980593ed58b3a933c3d7f02" and "dc74185c30cf7f6d9169fbac926dcf30767729c2" have entirely different histories.
0aaa59b7e2
...
dc74185c30
12
default.nix
12
default.nix
@ -4,16 +4,24 @@ pkgs.stdenv.mkDerivation rec {
|
|||||||
name= "site-max";
|
name= "site-max";
|
||||||
|
|
||||||
inherit (pkgs) sassc;
|
inherit (pkgs) sassc;
|
||||||
inherit (pkgs) stdenv;
|
inherit (pkgs) lib;
|
||||||
|
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
${sassc}/bin/sassc --sourcemap=auto --style compressed scss/creative.scss css/creative.css
|
${sassc}/bin/sassc -m auto -t compressed scss/creative.scss css/creative.css
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/
|
mkdir -p $out/
|
||||||
cp -R . $out/
|
cp -R . $out/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Site de présentation de Max Spiegel";
|
||||||
|
homepage = https://maxspiegel.fr/;
|
||||||
|
maintainers = with lib.maintainers; [ nyanloutre ];
|
||||||
|
license = lib.licenses.cc-by-nc-sa-40;
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user