nixpkgs/pkgs/development/libraries/half/default.nix

26 lines
674 B
Nix
Raw Normal View History

2017-06-03 14:46:35 +01:00
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
2020-03-18 21:50:55 +00:00
version = "2.1.0";
pname = "half";
2017-06-03 14:46:35 +01:00
src = fetchzip {
url = "mirror://sourceforge/half/${version}/half-${version}.zip";
2020-03-18 21:50:55 +00:00
sha256 = "04v4rhs1ffd4c9zcnk4yjhq0gdqy020518wb7n8ryk1ckrdd7hbm";
2017-06-03 14:46:35 +01:00
stripRoot = false;
};
buildCommand = ''
mkdir -p $out/include $out/share/doc
cp $src/include/half.hpp $out/include/
cp $src/{ChangeLog,LICENSE,README}.txt $out/share/doc/
'';
meta = with stdenv.lib; {
description = "C++ library for half precision floating point arithmetics";
platforms = platforms.all;
license = licenses.mit;
maintainers = [ maintainers.volth ];
};
}