Skip to content

Commit

Permalink
Fix metadata for flake packages
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuswhybrow committed Apr 12, 2024
1 parent 6cb6aeb commit 99aa14c
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@
go build ./cmd/ray-peat-rodeo
mv ray-peat-rodeo $out/bin/ray-peat-rodeo
'';

meta = {
description = "Custom static-site-generator. Ran from this repo it consumes markdown files in `./assets` and produces HTML files in `./build`.";
maintainers = [
"Marcus Whybrow <[email protected]>"
];
homepage = "https://raypeat.rodeo";
};
};

build = pkgs.stdenv.mkDerivation {
Expand All @@ -52,11 +60,11 @@
'';

meta = {
description = "Takes a Whisper IA JSON file as it's first arguent & outputs markdown to stdout appropriate to append to Ray Peat Rodeo markdown file.";
homepage = "https://github.com/marcuswhybrow/ray-peat-rodeo";
description = "Creates the final website deployment by running ray-peat-rodeo, pagefind static search, tailwind CSS processing, and copying raw assets into place.";
maintainers = [
"Marcus Whybrow <[email protected]>"
];
homepage = "https://github.com/marcuswhybrow/ray-peat-rodeo";
};
};

Expand All @@ -70,7 +78,15 @@
mkdir -p $out/bin
go build ./cmd/whisper-json2md
mv whisper-json2md $out/bin/whisper-json2md
'';
'';

meta = {
description = "Takes a Whisper IA JSON file as it's first arguent & outputs markdown to stdout appropriate to append to Ray Peat Rodeo markdown file.";
homepage = "https://github.com/marcuswhybrow/ray-peat-rodeo";
maintainers = [
"Marcus Whybrow <[email protected]>"
];
};
};

transcribe = pkgs.writeScriptBin "transcribe" ''
Expand Down

0 comments on commit 99aa14c

Please sign in to comment.