2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-11-03 02:18:15 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "convbin";
|
2021-09-18 10:52:07 +00:00
|
|
|
version = "3.7";
|
2020-11-03 02:18:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mateoconlechuga";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-09-18 10:52:07 +00:00
|
|
|
sha256 = "sha256-zCRM62xwaPaN8+cg+CeaqK/9hKpZmSBBeUOQqAvQGYw=";
|
2020-11-03 02:18:15 +00:00
|
|
|
};
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2021-12-06 16:07:01 +00:00
|
|
|
substituteInPlace Makefile --replace "-flto" ""
|
|
|
|
'';
|
|
|
|
|
2021-02-19 19:06:45 +00:00
|
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
2020-11-03 02:18:15 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pushd test
|
|
|
|
patchShebangs test.sh
|
|
|
|
./test.sh
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 bin/convbin $out/bin/convbin
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-11-03 02:18:15 +00:00
|
|
|
description = "Converts files to other formats";
|
|
|
|
longDescription = ''
|
|
|
|
This program is used to convert files to other formats,
|
|
|
|
specifically for the TI84+CE and related calculators.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/mateoconlechuga/convbin";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ luc65r ];
|
|
|
|
platforms = platforms.all;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "convbin";
|
2020-11-03 02:18:15 +00:00
|
|
|
};
|
|
|
|
}
|