Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "convbin";
|
|
version = "5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mateoconlechuga";
|
|
repo = "convbin";
|
|
tag = "v${version}";
|
|
sha256 = "sha256-k0hwBdjOweFoAE6jzhlRFZsMOVDDpi4R4LHA7SwO3os=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace Makefile --replace "-flto" ""
|
|
'';
|
|
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
checkPhase = ''
|
|
pushd test
|
|
patchShebangs test.sh
|
|
./test.sh
|
|
popd
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
installPhase = ''
|
|
install -Dm755 bin/convbin $out/bin/convbin
|
|
'';
|
|
|
|
meta = {
|
|
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 = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "convbin";
|
|
};
|
|
}
|