nixpkgs/pkgs/by-name/li/libs3/package.nix
superherointj e0b7307570 libs3: fix cross compilation
- migrate to pkgs/by-name
- refactor
- remove nested with
- order derivation attributes by phases order and attrs by alphabetical order
- minor format adaptations
2024-08-14 16:55:31 -03:00

55 lines
1.1 KiB
Nix

{
curl,
fetchFromGitHub,
fetchpatch,
lib,
libxml2,
pkg-config,
stdenv,
}:
stdenv.mkDerivation {
pname = "libs3";
version = "unstable-2019-04-10";
src = fetchFromGitHub {
owner = "bji";
repo = "libs3";
rev = "287e4bee6fd430ffb52604049de80a27a77ff6b4";
hash = "sha256-xgiY8oJlRMiXB1fw5dhNidfaq18YVwaJ8aErKU11O6U=";
};
patches = [
(fetchpatch {
# Fix compilation with openssl 3.0
url = "https://github.com/bji/libs3/pull/112/commits/3c3a1cf915e62b730db854d8007ba835cb38677c.patch";
hash = "sha256-+rWRh8dOznHlamc/T9qbgN0E2Rww3Hn94UeErxNDccs=";
})
];
postPatch = ''
substituteInPlace GNUmakefile \
--replace-fail curl-config "$PKG_CONFIG libcurl" \
--replace-fail xml2-config "$PKG_CONFIG libxml-2.0"
'';
makeFlags = [ "DESTDIR=${placeholder "out"}" ];
strictDeps = true;
nativeBuildInputs = [ pkg-config ];
buildInputs = [
curl
libxml2
];
meta = {
description = "Library for interfacing with amazon s3";
homepage = "https://github.com/bji/libs3";
license = lib.licenses.lgpl3Plus;
mainProgram = "s3";
platforms = lib.platforms.linux;
};
}