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.
21 lines
533 B
Nix
21 lines
533 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "blog-gallery-${version}";
|
|
|
|
#version = "MASTER";
|
|
# src = fetchTarball {
|
|
# url = "https://gogs.prunetwork.fr/jpierre03/gallery/archive/master.tar.gz";
|
|
#};
|
|
|
|
version = "2016-10-22-v1";
|
|
src = fetchurl {
|
|
url = "https://gogs.prunetwork.fr/jpierre03/gallery/archive/${version}.tar.gz";
|
|
sha256 = "0i44mp1w2p8v3yssa4c8xz59ga74dcxq96lkznyxr8np6hwdiyx1";
|
|
};
|
|
|
|
buildInputs = [ jekyll ];
|
|
buildPhase = "jekyll build";
|
|
installPhase = "cp -R _site \$out";
|
|
}
|