2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchgit, libusb1, pkg-config, pmutils, udev} :
|
2014-10-27 17:39:45 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
version = "2.1.1";
|
|
|
|
daemonlib = fetchgit {
|
|
|
|
url = "https://github.com/Tinkerforge/daemonlib.git";
|
|
|
|
rev = "refs/tags/brickd-${version}";
|
|
|
|
sha256 = "097kaz7d0rzg0ijvcna3y620k3m5fgxpqsac5gbhah8pd7vlj1a4";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "brickd";
|
|
|
|
inherit version;
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2014-10-27 17:39:45 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/Tinkerforge/brickd.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "0m2q01sbgf8z4559jpr6k3jivb8x98vxv1fhgx8nfcjbwz1q83gb";
|
2014-10-27 17:39:45 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 22:39:32 +01:00
|
|
|
buildInputs = [ libusb1 pmutils udev ];
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2014-10-27 17:39:45 +00:00
|
|
|
# shell thing didn't work so i replaced it using nix
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace src/brickd/Makefile --replace 'PKG_CONFIG := $(shell which pkg-config 2> /dev/null)' "PKG_CONFIG := $pkgconfig/bin/pkg_config";
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
export
|
|
|
|
# build the brickd binary
|
|
|
|
mkdir src/daemonlib
|
|
|
|
cp -r ${daemonlib}/* src/daemonlib
|
|
|
|
cd src/brickd
|
|
|
|
make
|
|
|
|
|
|
|
|
# build and execute the unit tests
|
|
|
|
cd ../tests
|
|
|
|
make
|
|
|
|
for i in array_test base58_test node_test putenv_test queue_test sha1_test; do
|
|
|
|
echo "running unit test $i:"
|
|
|
|
./$i
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
cd ../brickd
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp brickd $out/bin/brickd
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.tinkerforge.com/";
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "A daemon (or service on Windows) that acts as a bridge between the Bricks/Bricklets and the API bindings for the different programming languages";
|
2021-01-15 07:07:56 +00:00
|
|
|
maintainers = [ lib.maintainers.qknight ];
|
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.all;
|
2014-10-27 17:39:45 +00:00
|
|
|
};
|
|
|
|
}
|