Skip to content

Commit

Permalink
misc: index to show slide versions
Browse files Browse the repository at this point in the history
  • Loading branch information
codgician committed May 14, 2024
1 parent a70d1c9 commit 6b5c74f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/site.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
let
indexMd = pkgs.writeTextFile {
name = "index.md";
text = builtins.concatStringsSep "\n" ([ "${description}\n" ] ++ (builtins.map (p: "- [${p.meta.description}](${p.pname})") slidePkgs));
text = builtins.concatStringsSep "\n" ([ "${description}\n" ] ++ (builtins.map (p: "- [${p.meta.description}](${p.pname}) (${p.version})") slidePkgs));
};
in
pkgs.stdenv.mkDerivation rec {
Expand Down
2 changes: 1 addition & 1 deletion slides/intro-to-nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lib.seelies.mkRevealJs {

name = "intro-to-nix";
title = "Introducing Nix: declarative builds and deployments";
version = "20230328.2";
version = "2023.05.14-1";
src = ./.;
license = lib.licenses.cc-by-nc-sa-40;

Expand Down
2 changes: 1 addition & 1 deletion slides/packup/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lib.seelies.mkRevealJs {

name = "packup";
title = "Package Upgradability: the algorithm behind packup";
version = "20220923.1";
version = "2022.09.23-1";
src = ./.;
license = lib.licenses.cc-by-nc-sa-40;

Expand Down
2 changes: 1 addition & 1 deletion slides/permutation-group/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lib.seelies.mkRevealJs {

name = "permutation-group";
title = "浅谈置换群";
version = "2020.04.11";
version = "2020.04.11-1";
src = ./.;
license = lib.licenses.cc-by-nc-sa-40;

Expand Down

0 comments on commit 6b5c74f

Please sign in to comment.