Compilation Nix
This commit is contained in:
parent
1212a03441
commit
39525735f7
22
default.nix
Normal file
22
default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
|
||||||
|
pkgs.stdenv.mkDerivation rec {
|
||||||
|
name= "site-musique";
|
||||||
|
|
||||||
|
inherit (pkgs) stdenv;
|
||||||
|
|
||||||
|
src = ./.;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/
|
||||||
|
cp -R . $out/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Site de présentation de l'association Musique Fraternité de Meyenheim";
|
||||||
|
homepage = https://musique-meyenheim.fr;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ nyanloutre ];
|
||||||
|
license = stdenv.lib.licenses.cc-by-nc-sa-40;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user