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.

25 lines
592 B
Nix

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