2021-07-22 13:51:57 +02:00
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p nix curl gnused -I nixpkgs=.
# On Hackage every package description shows a category "Distributions" which
# lists a "NixOS" version.
# This script uploads a csv to hackage which will update the displayed versions
2021-07-26 17:35:40 +02:00
# based on the current versions in nixpkgs. This happens with a simple http
2021-07-22 13:51:57 +02:00
# request.
# For authorization you just need to have any valid hackage account. This
# script uses the `username` and `password-command` field from your
# ~/.cabal/config file.
# e.g. username: maralorn
2021-07-31 12:55:16 +02:00
# password-command: pass hackage.haskell.org (this can be any command, but not an arbitrary shell expression. Like cabal we only read the first output line and ignore the rest.)
2021-07-22 13:51:57 +02:00
# Those fields are specified under `upload` on the `cabal` man page.
2023-04-13 12:28:34 +02:00
if test -z " $CABAL_DIR " ; then
dirs = (
" $HOME /.cabal "
" ${ XDG_CONFIG_HOME :- $HOME /.config } /cabal "
)
missing = true
for dir in " ${ dirs [@] } " ; do
if test -d " $dir " ; then
export CABAL_DIR = " $dir "
missing = false
break
fi
done
if $missing ; then
echo " Could not find the cabal configuration directory in any of: ${ dirs [@] } " >& 2
exit 101
fi
fi
2021-07-22 13:51:57 +02:00
package_list = " $( nix-build -A haskell.package-list) /nixos-hackage-packages.csv "
2023-04-13 12:28:34 +02:00
username = $( grep "^username:" " $CABAL_DIR /config " | sed "s/^username: //" )
password_command = $( grep "^password-command:" " $CABAL_DIR /config " | sed "s/^password-command: //" )
2023-10-30 21:41:44 +01:00
curl -u " $username : $( $password_command | head -n1) " --digest -H "Content-type: text/csv" -T " $package_list " https://hackage.haskell.org/distro/NixOS/packages.csv
2021-09-20 02:52:30 +02:00
echo