libbgcode: init at 2023-11-16

This commit is contained in:
Yaroslav Bolyukin 2023-11-25 01:34:15 +01:00 committed by Maciej Krüger
parent fa36136cee
commit 33b8553908
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F

View File

@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, heatshrink
, zlib
, boost
, catch2
}:
stdenv.mkDerivation {
pname = "libbgcode";
version = "2023-11-16";
src = fetchFromGitHub {
owner = "prusa3d";
repo = "libbgcode";
rev = "bc390aab4427589a6402b4c7f65cf4d0a8f987ec";
hash = "sha256-TZShYeDAh+fNdmTr1Xqctji9f0vEGpNZv1ba/IY5EoY=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
heatshrink
zlib
boost
catch2
];
meta = with lib; {
homepage = "https://github.com/prusa3d/libbgcode";
description = "Prusa Block & Binary G-code reader / writer / converter";
license = licenses.agpl3Only;
maintainers = with maintainers; [ lach ];
};
}