1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

hlint: add manpage (#155382)

This commit is contained in:
Matthieu Coudron 2022-01-18 15:44:02 +01:00 committed by GitHub
parent 6f00dbfe27
commit 89b3b42c78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -818,6 +818,12 @@ self: super: builtins.intersectAttrs super {
platforms = pkgs.lib.platforms.x86;
} super.geomancy;
hlint = overrideCabal (drv: {
postInstall = ''
install -Dm644 data/hlint.1 -t "$out/share/man/man1"
'' + drv.postInstall or "";
}) super.hlint;
hls-brittany-plugin = overrideCabal (drv: {
testToolDepends = [ pkgs.git ];
preCheck = ''