nixos/pkgs/ivabus-dev.nix
Ivan Bushchik 3659455f94
Bump ivabus-dev to a1a564f
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2024-02-12 11:38:25 +03:00

41 lines
756 B
Nix

{ pkgs ? import <nixpkgs> { }, bundlerEnv ? pkgs.bundlerEnv, ... }:
let
version = "a1a564f2640e6694ec89a85595b7aad5f3b62395";
repo = builtins.fetchGit {
url = "https://github.com/ivabus/website";
rev = version;
};
gems = bundlerEnv {
name = "ivabus-dev";
ruby = pkgs.ruby;
gemdir = "${repo}/.";
};
in pkgs.stdenv.mkDerivation {
inherit version;
name = "ivabus-dev";
src = repo;
buildInputs = with pkgs; [
gems
# nokogiri dependencies
zlib
libiconv
libxml2
libxslt
# jekyll wants a JS runtime
nodejs-slim
];
buildPhase = ''
echo "commit_id: ${version}" >> _config.yml
bundle exec jekyll build
'';
installPhase = ''
mkdir -p $out
cp -r _site/* $out/
'';
}