patch pelican to add rel="me"
attribute to social links
This commit is contained in:
parent
66c071e279
commit
c4c5bfdb8a
2 changed files with 18 additions and 1 deletions
|
@ -9,7 +9,11 @@
|
|||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
python = pkgs.python3.withPackages (ps: with ps; [ markdown pelican ]);
|
||||
python = pkgs.python3.withPackages (ps:
|
||||
with ps; [
|
||||
markdown
|
||||
(pelican.overrideAttrs (_: _: { patches = [ ./pelican.patch ]; }))
|
||||
]);
|
||||
website = pkgs.stdenv.mkDerivation {
|
||||
name = "website";
|
||||
src = ./.;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue