cv/flake.nix

51 lines
1.2 KiB
Nix
Raw Normal View History

2023-11-12 18:07:31 +01:00
{
description = "CV template";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
systems.url = "github:nix-systems/x86_64-linux";
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
};
outputs = { self, nixpkgs, flake-utils, systems }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
pname = "cv";
version = "0.0.1";
src = ./.;
buildInputs = with pkgs; [
];
nativeBuildInputs = with pkgs; [
nodejs_20
bun
2023-11-13 12:33:50 +01:00
inotify-tools
2023-11-12 18:07:31 +01:00
];
2023-11-13 12:33:50 +01:00
shellHook = ''
echo "$$" > ./pid
monitor() {
while true; do
inotifywait -e modify ${pname}.tsx > /dev/null 2>&1
make
pkill -HUP mupdf
done
}
monitor > /dev/null 2>&1 &
'';
2023-11-12 18:07:31 +01:00
in
{
devShells.default = pkgs.mkShell {
2023-11-13 12:33:50 +01:00
inherit pname buildInputs nativeBuildInputs shellHook;
2023-11-12 18:07:31 +01:00
};
packages.default = pkgs.stdenv.mkDerivation {
inherit buildInputs nativeBuildInputs pname version src;
};
});
}