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.

20 lines
479 B
Nix

9 years ago
with import <nixpkgs> {};
stdenv.mkDerivation rec {
version = "MASTER";
9 years ago
name = "blog-gallery-${version}";
9 years ago
#src = fetchTarball {
# url = "https://gogs.prunetwork.fr/jpierre03/gallery/archive/master.tar.gz";
#};
9 years ago
src = fetchgit {
url = "https://gogs.prunetwork.fr/jpierre03/gallery.git";
sha256 = "0ccdjlp5ljskvirp0djd3icxigpw7fbml43906k0vb68ln9k2qbp";
};
9 years ago
buildInputs = [ jekyll ];
buildPhase = "jekyll build";
installPhase = "cp -R _site \$out";
}