Merge pull request #183259 from fgaz/heatshrink/init

This commit is contained in:
Sandro 2022-08-10 14:47:01 +02:00 committed by GitHub
commit 800e17f25c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "heatshrink";
version = "0.4.1";
src = fetchFromGitHub {
owner = "atomicobject";
repo = "heatshrink";
rev = "v${version}";
hash = "sha256-Nm9/+JFMDXY1N90hmNFGh755V2sXSRQ4VBN9f8TcsGk=";
};
makeFlags = [ "PREFIX=$(out)" ];
preInstall = ''
mkdir -p $out/{bin,lib,include}
'';
doCheck = true;
checkTarget = "test";
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
echo "Hello world" | \
$out/bin/heatshrink -e - | \
$out/bin/heatshrink -d - | \
grep "Hello world"
runHook postInstallCheck
'';
meta = with lib; {
description = "A data compression/decompression library for embedded/real-time systems";
homepage = "https://github.com/atomicobject/heatshrink";
license = licenses.isc;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
}

View file

@ -7257,6 +7257,8 @@ with pkgs;
heaptrack = libsForQt5.callPackage ../development/tools/profiling/heaptrack {};
heatshrink = callPackage ../tools/compression/heatshrink { };
heimdall = libsForQt5.callPackage ../tools/misc/heimdall { };
heimdall-gui = heimdall.override { enableGUI = true; };