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

26 lines
672 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip }:
2017-06-03 13:46:35 +00:00
stdenv.mkDerivation rec {
2020-03-18 21:50:55 +00:00
version = "2.1.0";
pname = "half";
2017-06-03 13:46:35 +00:00
src = fetchzip {
url = "mirror://sourceforge/half/${version}/half-${version}.zip";
2020-03-18 21:50:55 +00:00
sha256 = "04v4rhs1ffd4c9zcnk4yjhq0gdqy020518wb7n8ryk1ckrdd7hbm";
2017-06-03 13:46:35 +00: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 lib; {
2017-06-03 13:46:35 +00:00
description = "C++ library for half precision floating point arithmetics";
platforms = platforms.all;
license = licenses.mit;
maintainers = [ maintainers.volth ];
};
}