mirror of
https://github.com/ParkerTenBroeck/ParkerTenBroeck.github.io.git
synced 2026-06-06 21:14:06 -04:00
18 lines
378 B
Nix
18 lines
378 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
let
|
|
unstable =
|
|
import
|
|
(fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
|
|
sha256 = "sha256:09qwbfkvk3jmqlpgis4v1m1fmh7zffi8drybb03mjqa95bynbs99";
|
|
})
|
|
{
|
|
system = pkgs.stdenv.hostPlatform.system;
|
|
};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [ unstable.zola ];
|
|
}
|