summary refs log tree commit diff
path: root/maintainers
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2021-07-22 13:51:57 +0200
committerMalte Brandy <malte.brandy@maralorn.de>2021-07-22 23:17:37 +0200
commit264e63477da228071f03a0b4bfd17a9f612e7bc1 (patch)
treef46befdff5eb793b642bea691cd4ed9f53e9d10f /maintainers
parent3ed47ddb24e8e762e034b30d2885d3bda5fee346 (diff)
downloadnixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.tar
nixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.tar.gz
nixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.tar.bz2
nixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.tar.lz
nixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.tar.xz
nixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.tar.zst
nixpkgs-264e63477da228071f03a0b4bfd17a9f612e7bc1.zip
pkgs.haskell.package-list: init
This commit introduces a maintainer script to upload our current list of
haskell-packages to hackage.
Diffstat (limited to 'maintainers')
-rwxr-xr-xmaintainers/scripts/haskell/upload-nixos-package-list-to-hackage.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/maintainers/scripts/haskell/upload-nixos-package-list-to-hackage.sh b/maintainers/scripts/haskell/upload-nixos-package-list-to-hackage.sh
new file mode 100755
index 00000000000..f887f0c4293
--- /dev/null
+++ b/maintainers/scripts/haskell/upload-nixos-package-list-to-hackage.sh
@@ -0,0 +1,21 @@
+#! /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
+# based on the current versions in nixpkgs.  This happens with on simple http
+# 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
+#      password-command: pass hackage.haskell.org (this can be any command, but not an arbitrary shell expression.)
+# Those fields are specified under `upload` on the `cabal` man page.
+
+package_list="$(nix-build -A haskell.package-list)/nixos-hackage-packages.csv"
+username=$(grep "^username:" ~/.cabal/config | sed "s/^username: //")
+password_command=$(grep "^password-command:" ~/.cabal/config | sed "s/^password-command: //")
+curl -u "$username:$($password_command)" --digest -H "Content-type: text/csv" -T "$package_list" http://hackage.haskell.org/distro/NixOS/packages.csv