hainich/mumble: import website from sources.json

keep-around/75ec36dda279ebf82eab3fbeef19059af7c2b343
schweby 2021-04-16 15:54:25 +02:00
parent 18ed88727f
commit 75ec36dda2
No known key found for this signature in database
GPG Key ID: B880491D046E2F87
1 changed files with 4 additions and 5 deletions

View File

@ -1,14 +1,13 @@
{ config, lib, pkgs, ... }:
let
sources = import ../../../nix/sources.nix;
in
let
mumblesite = pkgs.stdenv.mkDerivation {
name = "mumble.hacc.space-website";
src = pkgs.fetchgit {
url = "https://gitlab.infra4future.de/hacc/infra4future/mumble.infra4future.de";
rev = "8949bd21346bc55175957ffb179d25ea00be4d01";
sha256 = "09qpszhxdkgkspcl6n7djgabp5km1s9v0rqb31wmm7fai9zkgmq3";
};
src = sources.mumble-website.outPath.outPath;
buildPhase = ''
${pkgs.jekyll.outPath}/bin/jekyll build
'';