mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, libxml2, pkg-config
|
|
, compressionSupport ? true, zlib ? null
|
|
, sslSupport ? true, openssl ? null
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
, shared ? !stdenv.hostPlatform.isStatic
|
|
, bash
|
|
}:
|
|
|
|
assert compressionSupport -> zlib != null;
|
|
assert sslSupport -> openssl != null;
|
|
assert static || shared;
|
|
|
|
let
|
|
inherit (lib) optionals;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.32.5";
|
|
pname = "neon";
|
|
|
|
src = fetchurl {
|
|
url = "https://notroj.github.io/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-SHLhL4Alct7dSwL4cAZYFLLVFB99va9wju2rgmtRpYo=";
|
|
};
|
|
|
|
patches = optionals stdenv.hostPlatform.isDarwin [ ./darwin-fix-configure.patch ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [libxml2 openssl bash]
|
|
++ lib.optional compressionSupport zlib;
|
|
|
|
strictDeps = true;
|
|
|
|
configureFlags = [
|
|
(lib.enableFeature shared "shared")
|
|
(lib.enableFeature static "static")
|
|
(lib.withFeature compressionSupport "zlib")
|
|
(lib.withFeature sslSupport "ssl")
|
|
];
|
|
|
|
preConfigure = ''
|
|
export PKG_CONFIG="$(command -v "$PKG_CONFIG")"
|
|
'';
|
|
|
|
passthru = {inherit compressionSupport sslSupport;};
|
|
|
|
meta = with lib; {
|
|
description = "HTTP and WebDAV client library";
|
|
mainProgram = "neon-config";
|
|
homepage = "https://notroj.github.io/neon/";
|
|
changelog = "https://github.com/notroj/${pname}/blob/${version}/NEWS";
|
|
platforms = platforms.unix;
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|