Compare commits

...

3 commits

Author SHA1 Message Date
Bruno BELANYI 20b77e98e6 nix: update TeX Live package definition
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-02-15 19:55:48 +00:00
Bruno BELANYI bf73469b61 nix: bump inputs 2024-02-15 19:55:14 +00:00
Bruno BELANYI b8c5986663 nix: use 'nixpkgs-unstable' 2024-02-15 19:55:04 +00:00
2 changed files with 36 additions and 20 deletions

View file

@ -1,12 +1,15 @@
{ {
"nodes": { "nodes": {
"futils": { "futils": {
"inputs": {
"systems": "systems"
},
"locked": { "locked": {
"lastModified": 1678901627, "lastModified": 1705309234,
"narHash": "sha256-U02riOqrKKzwjsxc/400XnElV+UtPUQWpANPlyazjH0=", "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "93a2b84fc4b70d9e089d029deacc3583435c2ed6", "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -17,15 +20,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1679689661, "lastModified": 1707877513,
"narHash": "sha256-V0+vWTOKCv/N2GrbrCQOBTTFABAcR51k3vBysEBSXJg=", "narHash": "sha256-sp0w2apswd3wv0sAEF7StOGHkns3XUQaO5erhWFZWXk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8d709fdd24eaaa8c1c1fa660fc141b8dfc0beaa0", "rev": "89653a03e0915e4a872788d10680e7eec92f8600",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@ -35,6 +39,21 @@
"futils": "futils", "futils": "futils",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -2,7 +2,7 @@
description = "Ambroisie's CV"; description = "Ambroisie's CV";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
futils.url = "github:numtide/flake-utils"; futils.url = "github:numtide/flake-utils";
}; };
@ -14,19 +14,16 @@
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
buildInputs = with pkgs; [ buildInputs = with pkgs; [
gnumake gnumake
(texlive.combine { (texliveSmall.withPackages (ps: with ps; [
inherit (texlive) # Build script
scheme-small latexmk
# Build script # Extra packages needed
latexmk clearsans
# Extra packages needed fontaxes
clearsans textpos
fontaxes ifmtarg
textpos marvosym
ifmtarg ]))
marvosym
;
})
]; ];
in in
{ {