nixpkgs/pkgs/tools/misc/convbin/default.nix

47 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-10-28 11:03:02 +00:00
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "convbin";
2021-09-14 05:17:54 +01:00
version = "3.7";
2020-10-28 11:03:02 +00:00
src = fetchFromGitHub {
owner = "mateoconlechuga";
repo = pname;
rev = "v${version}";
2021-09-14 05:17:54 +01:00
sha256 = "sha256-zCRM62xwaPaN8+cg+CeaqK/9hKpZmSBBeUOQqAvQGYw=";
2020-10-28 11:03:02 +00:00
};
2021-11-18 20:16:32 +00:00
postPatch = lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile --replace "-flto" ""
'';
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
2020-10-28 11:03:02 +00:00
checkPhase = ''
pushd test
patchShebangs test.sh
./test.sh
popd
'';
doCheck = true;
installPhase = ''
install -Dm755 bin/convbin $out/bin/convbin
'';
meta = with lib; {
2020-10-28 11:03:02 +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;
};
}