move script descriptions to readme

This commit is contained in:
rhiannon morris 2025-04-02 21:28:41 +02:00
parent 1dde09e276
commit 1ccbf13a31
2 changed files with 19 additions and 18 deletions

View file

@ -31,9 +31,26 @@ some stuff that you might like. probably not. but i made this for myself so that
wrapper around the existing `firefox-esr` package that allows you to have it wrapper around the existing `firefox-esr` package that allows you to have it
and firefox normal style both installed without collisions and firefox normal style both installed without collisions
- **inkscape-xwayland**: - **inkscape-xwayland**:
wrapper around `inkscape` to use xwayland, since it doesn't work for me otherwise wrapper around `inkscape` to use xwayland, since it doesn't work for me
otherwise
- [**isabelle**](https://isabelle.in.tum.de): - [**isabelle**](https://isabelle.in.tum.de):
the existing package doesn't work for me. life's too short, just wrap the the existing package doesn't work for me. life's too short, just wrap the
upstream distribution upstream distribution
- **multi-ghc**: - **multi-ghc**:
install all available versions of ghc at once install all available versions of ghc at once
## other
- **niss-misc**: some small scripts i wrote for myself that aren't likely to be
useful for anyone else.
- `galleryHelpers`: helper scripts for putting together the input for
`gallery.niss.website`. exceedingly unlikely to be useful to anyone else.
- `charFilters`: `little` for making text ˡⁱᵏᵉ ᵗʰⁱˢ and `wide` for text
 .
- `find-parent`:
`find-parent file` looks for `file` in the current directory or any of
its ancestors, and prints the path of the file found, if any.
`find-parent -d file` prints the path of only the directory containing the
file, rather than the file itself.
- `nd`: looks for a `flake.nix` and runs `nix develop` if so. uses
`find-parent`.

View file

@ -34,21 +34,5 @@ in
map (d: "cp ${dir d}/* $out/bin") (lib.attrNames deps) ++ map (d: "cp ${dir d}/* $out/bin") (lib.attrNames deps) ++
[ "chmod a+x $out/bin/*" ]); [ "chmod a+x $out/bin/*" ]);
meta = { meta.description = "niss's funny little scripts";
description = "niss's funny little scripts";
longDescription = ''
- `galleryHelpers`: helper scripts for putting together the input for
`gallery.niss.website`. exceedingly unlikely to be useful to anyone
else.
- `charFilters`: `little` for making text ˡ ʰˢ and `wide` for
text  .
- find-parent:
`find-parent file` looks for `file` in the current directory or
any of its ancestors, and prints the path of the file found, if any.
`find-parent -d file` prints the path of only the directory
containing the file, rather than the file itself.
- nd: looks for a `flake.nix` and runs `nix develop` if so.
uses `find-parent`.
'';
};
} }