mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
fetchNextcloudApp: use fetchurl by default
This commit is contained in:
parent
323b37309c
commit
da8b0f0621
@ -175,6 +175,10 @@
|
|||||||
and `nodePackages.vscode-json-languageserver-bin` were dropped due to an unmaintained upstream.
|
and `nodePackages.vscode-json-languageserver-bin` were dropped due to an unmaintained upstream.
|
||||||
The `vscode-langservers-extracted` package is a maintained drop-in replacement.
|
The `vscode-langservers-extracted` package is a maintained drop-in replacement.
|
||||||
|
|
||||||
|
- `fetchNextcloudApp` has been rewritten to use `fetchurl` rather than
|
||||||
|
`fetchzip`. This invalidates all existing hashes but you can restore the old
|
||||||
|
behavior by passing it `unpack = true`.
|
||||||
|
|
||||||
- `haskell.lib.compose.justStaticExecutables` now disallows references to GHC in the
|
- `haskell.lib.compose.justStaticExecutables` now disallows references to GHC in the
|
||||||
output by default, to alert users to closure size issues caused by
|
output by default, to alert users to closure size issues caused by
|
||||||
[#164630](https://github.com/NixOS/nixpkgs/issues/164630). See ["Packaging
|
[#164630](https://github.com/NixOS/nixpkgs/issues/164630). See ["Packaging
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
, patches ? [ ]
|
, patches ? [ ]
|
||||||
, description ? null
|
, description ? null
|
||||||
, homepage ? null
|
, homepage ? null
|
||||||
, unpack ? true # whether to use fetchzip rather than fetchurl
|
, unpack ? false # whether to use fetchzip rather than fetchurl
|
||||||
}:
|
}:
|
||||||
applyPatches ({
|
applyPatches ({
|
||||||
inherit patches;
|
inherit patches;
|
||||||
|
@ -19,7 +19,6 @@ let packages = self:
|
|||||||
appName = pname;
|
appName = pname;
|
||||||
appVersion = data.version;
|
appVersion = data.version;
|
||||||
license = appBaseDefs.${pname};
|
license = appBaseDefs.${pname};
|
||||||
unpack = false;
|
|
||||||
inherit (data) url hash description homepage;
|
inherit (data) url hash description homepage;
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user