mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
25 lines
640 B
Nix
25 lines
640 B
Nix
{ lib, stdenv, fetchFromGitHub, curl, cmake, nlohmann_json }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "cpp-ipfs-api";
|
|
version = "2017-01-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vasild";
|
|
repo = "cpp-ipfs-api";
|
|
rev = "96a890f4518665a56581a2a52311eaa65928eac8";
|
|
sha256 = "1z6gbd7npg4pd9wmdyzcp9h12sg84d7a43c69pp4lzqkyqg8pz1g";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ curl ];
|
|
propagatedBuildInputs = [ nlohmann_json ];
|
|
|
|
meta = with lib; {
|
|
description = "IPFS C++ API client library";
|
|
homepage = "https://github.com/vasild/cpp-ipfs-api";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|