2021-02-25 15:05:30 +01:00
|
|
|
{
|
|
|
|
description = "Ambroisie's CV";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
|
|
futils.url = "github:numtide/flake-utils";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, futils } @ inputs:
|
2021-08-08 20:03:44 +02:00
|
|
|
futils.lib.eachDefaultSystem (system:
|
2021-02-25 15:05:30 +01:00
|
|
|
let
|
|
|
|
inherit (nixpkgs) lib;
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
gnumake
|
|
|
|
(texlive.combine {
|
|
|
|
inherit (texlive)
|
|
|
|
scheme-small
|
|
|
|
# Build script
|
|
|
|
latexmk
|
|
|
|
# Extra packages needed
|
|
|
|
clearsans
|
|
|
|
fontaxes
|
|
|
|
textpos
|
|
|
|
ifmtarg
|
|
|
|
marvosym
|
|
|
|
;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
in
|
|
|
|
{
|
|
|
|
devShell = pkgs.mkShell {
|
|
|
|
name = "cv";
|
|
|
|
inherit buildInputs;
|
|
|
|
};
|
|
|
|
|
|
|
|
defaultPackage = pkgs.stdenvNoCC.mkDerivation {
|
|
|
|
pname = "cv";
|
|
|
|
version = self.rev or "dirty";
|
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
inherit buildInputs;
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm644 en.pdf $out/share/en.pdf
|
|
|
|
install -Dm644 fr.pdf $out/share/fr.pdf
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|