-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wkhtmltopdf: unbreak package #327641
wkhtmltopdf: unbreak package #327641
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14432,11 +14432,8 @@ with pkgs; | |
|
||
wireguard-go = callPackage ../tools/networking/wireguard-go { }; | ||
|
||
wkhtmltopdf = libsForQt5.callPackage ../tools/graphics/wkhtmltopdf { }; | ||
|
||
wkhtmltopdf-bin = callPackage ../tools/graphics/wkhtmltopdf-bin { | ||
openssl = openssl_1_1; | ||
}; | ||
wkhtmltopdf-bin = callPackage ../tools/graphics/wkhtmltopdf-bin { }; | ||
wkhtmltopdf = wkhtmltopdf-bin; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hydra doesn't allow aliases to be passed to packages. we could rename all the inputs, or keep this manual alias here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
wml = callPackage ../development/web/wml { }; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does fetchzip decompress it? idk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technally yes, there is one package doing it, pkgs/by-name/te/tetrio-desktop/package.nix. All of the others are using fetchurl.
I prefer using fetchurl as the hash is on the content and can be easily calculated separately.