diff --git a/packages/projects.nix b/packages/projects.nix index 4afb87e..7e6d75d 100644 --- a/packages/projects.nix +++ b/packages/projects.nix @@ -50,8 +50,6 @@ 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; }; diff --git a/packages/sources/sources.json b/packages/sources/sources.json index 5bbd5ec..6512ff5 100644 --- a/packages/sources/sources.json +++ b/packages/sources/sources.json @@ -28,20 +28,6 @@ "url": "https://api.github.com/repos/excalidraw/excalidraw/tarball/v0.12.0", "hash": "1y943iqamqd9kv8ph1mwxr5c4ypha6245qwkfdyjzmky2hzm3388" }, - "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": { diff --git a/packages/themes/gohugo-theme-ananke/default.nix b/packages/themes/gohugo-theme-ananke/default.nix deleted file mode 100644 index 23d6d09..0000000 --- a/packages/themes/gohugo-theme-ananke/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ 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 - ''; -}