packages/gohugo-theme-ananke: init at 2.9.1
This commit is contained in:
parent
dbdae08da2
commit
977bed8dd7
3 changed files with 27 additions and 0 deletions
|
@ -49,6 +49,8 @@
|
||||||
in
|
in
|
||||||
uptime-kuma;
|
uptime-kuma;
|
||||||
|
|
||||||
|
gohugo-theme-ananke = pkgs.callPackage ./themes/gohugo-theme-ananke { inherit pins; };
|
||||||
|
|
||||||
grafana = pkgs.callPackage ./monitoring/grafana { };
|
grafana = pkgs.callPackage ./monitoring/grafana { };
|
||||||
|
|
||||||
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
|
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
|
||||||
|
|
|
@ -1,5 +1,19 @@
|
||||||
{
|
{
|
||||||
"pins": {
|
"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": {
|
"searxng": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
11
packages/themes/gohugo-theme-ananke/default.nix
Normal file
11
packages/themes/gohugo-theme-ananke/default.nix
Normal 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
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue