You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
680 B
Nix
24 lines
680 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2016-10-22-v1";
|
|
name = "blog-gallery-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://gogs.prunetwork.fr/jpierre03/gallery/archive/${version}.tar.gz";
|
|
sha256 = "1cynmrz2npabm42hv5m52wa85wfpdxljmkjv4k57ilq8xmr6xxgv";
|
|
};
|
|
|
|
buildInputs = [ jekyll ];
|
|
buildPhase = "jekyll build";
|
|
installPhase = "cp -R _site \$out";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Site web de photo";
|
|
homepage = https://gogs.prunetwork.fr/jpierre03/gallery;
|
|
license = licenses.cc-by-nc-sa-40;
|
|
maintainers = [ "Jean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>" ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|