51 lines
1.6 KiB
Nix
51 lines
1.6 KiB
Nix
{ rustPlatform, stdenv, lib, fetchFromGitHub, fetchurl
|
|
, pkg-config, openssl
|
|
, CoreFoundation, libiconv, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-c";
|
|
version = "0.8.1";
|
|
|
|
src = stdenv.mkDerivation rec {
|
|
name = "${pname}-source-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lu-zero";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0fd0xql5cbqgmir2z3ah91iasaq9133wmi5bnhiy3dv7drcqv4rc";
|
|
};
|
|
cargoLock = fetchurl {
|
|
url = "https://github.com/lu-zero/${pname}/releases/download/v${version}/Cargo.lock";
|
|
sha256 = "1xlh3h77rxhqyr1nkqyanb120lwdks6fklh202camqpmznd763g5";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -R ./* $out/
|
|
cp ${cargoLock} $out/Cargo.lock
|
|
'';
|
|
};
|
|
|
|
cargoSha256 = "0b952xkg0l31laqlhsv3cqdag7v15k9na6xr6q9y8xwy1fjh9gzv";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
|
|
|
|
meta = with lib; {
|
|
description = "A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries";
|
|
longDescription = ''
|
|
Cargo C-ABI helpers. A cargo applet that produces and installs a correct
|
|
pkg-config file, a static library and a dynamic library, and a C header
|
|
to be used by any C (and C-compatible) software.
|
|
'';
|
|
homepage = "https://github.com/lu-zero/cargo-c";
|
|
changelog = "https://github.com/lu-zero/cargo-c/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|