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.
nix-public-expressions/gogs-jpierre03-gallery-MAST...

24 lines
651 B
Nix

9 years ago
with import <nixpkgs> {};
stdenv.mkDerivation rec {
version = "MASTER";
9 years ago
name = "blog-gallery-${version}";
9 years ago
src = fetchgit {
url = "https://gogs.prunetwork.fr/jpierre03/gallery.git";
sha256 = "1aw770lcv1gxxvid05bgmjpng3755rpggd37gnrx02fhl72ybk9z";
};
9 years ago
buildInputs = [ jekyll ];
buildPhase = "jekyll build";
installPhase = "cp -R _site \$out";
9 years ago
meta = with stdenv.lib; {
description = "Site web de photo";
9 years ago
homepage = https://gogs.prunetwork.fr/jpierre03/gallery;
license = licenses.cc-by-nc-sa-40;
9 years ago
maintainers = [ "Jean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>" ];
platforms = platforms.linux;
};
}