summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
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 /pkgs/development/haskell-modules
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 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/HACKING.md8
-rw-r--r--pkgs/development/haskell-modules/package-list.nix19
2 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/HACKING.md b/pkgs/development/haskell-modules/HACKING.md
index 37bd5544fe1..98ab03a0edd 100644
--- a/pkgs/development/haskell-modules/HACKING.md
+++ b/pkgs/development/haskell-modules/HACKING.md
@@ -241,6 +241,14 @@ When you've double-checked these points, go ahead and merge the `haskell-updates
 After merging, **make sure not to delete the `haskell-updates` branch**, since it
 causes all currently open Haskell-related pull-requests to be automatically closed on GitHub.
 
+## Update Hackage Version Information
+
+After merging into master you can update what hackage displays as the current
+version in NixOS for every individual package.
+To do this you run `maintainers/scripts/haskell/upload-nixos-package-list-to-hackage.sh`.
+See the script for how to provide credentials. Once you have configured that
+running this takes only a few seconds.
+
 ## Additional Info
 
 Here are some additional tips that didn't fit in above.
diff --git a/pkgs/development/haskell-modules/package-list.nix b/pkgs/development/haskell-modules/package-list.nix
new file mode 100644
index 00000000000..64f4be3a772
--- /dev/null
+++ b/pkgs/development/haskell-modules/package-list.nix
@@ -0,0 +1,19 @@
+{ runCommand, haskellPackages, lib, all-cabal-hashes, writeShellScript }:
+let
+  pkgLine = name: pkg:
+    let
+      version = pkg.version or "";
+    in
+    if version != "" then
+      ''"${name}","${version}","http://hydra.nixos.org/job/nixpkgs/trunk/haskellPackages.${name}.x86_64-linux"''
+    else "";
+  all-haskellPackages = builtins.toFile "all-haskellPackages" (lib.concatStringsSep "\n" (lib.filter (x: x != "") (lib.mapAttrsToList pkgLine haskellPackages)));
+in
+runCommand "hackage-package-list" { }
+  # This command will make a join between all packages on hackage and haskellPackages.*.
+  # It creates a valid csv file which can be uploaded to hackage.haskell.org.
+  # The call is wrapped in echo $(...) to trim trailing newline, which hackage requires.
+  ''
+    mkdir -p $out/bin
+    echo -n "$(tar -t -f ${all-cabal-hashes} | sed 's![^/]*/\([^/]*\)/.*!"\1"!' | sort -u | join -t , - ${all-haskellPackages})" > $out/nixos-hackage-packages.csv
+  ''