{ description = "Franck Cuny's resume"; inputs = { nixpkgs.url = "github:nixos/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in { defaultPackage = pkgs.stdenv.mkDerivation { name = "resume"; buildInputs = with pkgs; [ pandoc ]; src = ./.; buildPhase = '' pandoc --self-contained --css styles/resume.css --from org --to html --output resume.html readme.org ''; installPhase = '' mkdir -p $out cp resume.html $out/ ''; }; devShell = pkgs.mkShell { buildInputs = with pkgs; [ git pandoc ]; }; }); }