ménage + réorganisation release
parent
eed690240a
commit
94acc0882e
@ -0,0 +1,28 @@
|
||||
# https://www.mpscholten.de/nixos/2016/07/07/private-github-repositories-and-nixos.html
|
||||
# https://nixos.org/wiki/FAQ#How_do_I_know_the_sha256_to_use_with_fetchgit.3F
|
||||
|
||||
with import <nixpkgs> {};
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "master";
|
||||
name = "blog-gallery-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
# fetchurl
|
||||
#url = "https://gogs.prunetwork.fr/lothy/recette-cuisine/archive/${version}.tar.gz";
|
||||
url = "https://gogs.prunetwork.fr/lothy/recette-cuisine.git";
|
||||
sha256 = "0cfp4g385vf78py7vffg8ckvqqm8bcxy2ifqgk1syzms9j3cnhjr";
|
||||
};
|
||||
|
||||
buildInputs = [ jekyll ];
|
||||
buildPhase = "jekyll build";
|
||||
installPhase = "cp -R _site \$out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Site web de recette de cuisine";
|
||||
homepage = https://gogs.prunetwork.fr/lothy/recette-cuisine;
|
||||
license = licenses.cc-by-nc-sa-40;
|
||||
maintainers = [ "Jean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
# https://www.mpscholten.de/nixos/2016/07/07/private-github-repositories-and-nixos.html
|
||||
# https://nixos.org/wiki/FAQ#How_do_I_know_the_sha256_to_use_with_fetchgit.3F
|
||||
|
||||
with import <nixpkgs> {};
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "master";
|
||||
name = "r6d-blog-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/r6d/r6d.github.io.git";
|
||||
sha256 = "";
|
||||
};
|
||||
|
||||
buildInputs = [ jekyll ];
|
||||
buildPhase = "jekyll build";
|
||||
installPhase = "cp -R _site \$out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = [ "Jean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
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;
|
||||
};
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
# https://www.mpscholten.de/nixos/2016/07/07/private-github-repositories-and-nixos.html
|
||||
# https://nixos.org/wiki/FAQ#How_do_I_know_the_sha256_to_use_with_fetchgit.3F
|
||||
|
||||
with import <nixpkgs> {};
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version="MASTER";
|
||||
name = "gogs-jpierre03-homepage-${version}";
|
||||
|
||||
# liste des fonction de récup : fetch* https://github.com/NixOS/nixpkgs/tree/master/pkgs/build-support
|
||||
src = fetchgit {
|
||||
url = "https://gogs.prunetwork.fr/jpierre03/homepage.git";
|
||||
sha256 = "08h6jg7pmxp3wh5dbhds6ky0i85li8c2slfa3h7fcpdyk4pvqm8r";
|
||||
};
|
||||
|
||||
installPhase = "cp -R . \$out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Page d'accueil";
|
||||
homepage = https://gogs.prunetwork.fr/jpierre03/homepage;
|
||||
license = licenses.cc-by-nc-sa-40;
|
||||
maintainers = [ "Jean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
# https://www.mpscholten.de/nixos/2016/07/07/private-github-repositories-and-nixos.html
|
||||
# https://nixos.org/wiki/FAQ#How_do_I_know_the_sha256_to_use_with_fetchgit.3F
|
||||
|
||||
with import <nixpkgs> {};
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version="MASTER";
|
||||
name = "openlayer-simplemap-blog-${version}";
|
||||
|
||||
# liste des fonction de récup : fetch* https://github.com/NixOS/nixpkgs/tree/master/pkgs/build-support
|
||||
src = fetchgit {
|
||||
url = "https://gogs.prunetwork.fr/jpierre03/openlayer-simplemap.git";
|
||||
sha256 = "0z7b2rc2xrwrkgsdf8nc9azbqhvf062xf6ad8clrmgn1lax9zki4";
|
||||
};
|
||||
|
||||
installPhase = "cp -R . \$out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = [ "Jean-Pierre PRUNARET <jean-pierre+git@prunetwork.fr>" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue