packages/gohugo-theme-ananke: init at 2.9.1

This commit is contained in:
Max Headroom 2022-07-31 16:09:09 +02:00
parent dbdae08da2
commit 977bed8dd7
3 changed files with 27 additions and 0 deletions

View file

@ -49,6 +49,8 @@
in
uptime-kuma;
gohugo-theme-ananke = pkgs.callPackage ./themes/gohugo-theme-ananke { inherit pins; };
grafana = pkgs.callPackage ./monitoring/grafana { };
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };

View file

@ -1,5 +1,19 @@
{
"pins": {
"gohugo-theme-ananke": {
"type": "GitRelease",
"repository": {
"type": "GitHub",
"owner": "theNewDynamic",
"repo": "gohugo-theme-ananke"
},
"pre_releases": false,
"version_upper_bound": null,
"version": "v2.9.1",
"revision": "470ea40982f5036554819253c3ac6ed4a34193f4",
"url": "https://api.github.com/repos/theNewDynamic/gohugo-theme-ananke/tarball/v2.9.1",
"hash": "00lp2db3kifizfhmgyihsa1gn5pb91j2kcg64rz0m7lh4b4bqpvg"
},
"searxng": {
"type": "Git",
"repository": {

View file

@ -0,0 +1,11 @@
{ stdenvNoCC, npins, pins }:
stdenvNoCC.mkDerivation {
pname = "gohugo-theme-ananke";
version = builtins.substring 1 (-1) pins.gohugo-theme-ananke.version;
src = npins.mkSource pins.gohugo-theme-ananke;
buildCommand = ''
mkdir -p $out/share/hugo/themes
cp -r $src $out/share/hugo/themes/ananke
'';
}