linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / half / default.nix
blob5232dfa51230b9d8e7c117b7f2f110a4344755d8
1 { lib, stdenv, fetchzip }:
3 stdenv.mkDerivation rec {
4   version = "2.1.0";
5   pname = "half";
7   src = fetchzip {
8     url = "mirror://sourceforge/half/${version}/half-${version}.zip";
9     sha256 = "04v4rhs1ffd4c9zcnk4yjhq0gdqy020518wb7n8ryk1ckrdd7hbm";
10     stripRoot = false;
11   };
13   buildCommand = ''
14     mkdir -p $out/include $out/share/doc
15     cp $src/include/half.hpp               $out/include/
16     cp $src/{ChangeLog,LICENSE,README}.txt $out/share/doc/
17   '';
19   meta = with lib; {
20     description = "C++ library for half precision floating point arithmetics";
21     platforms = platforms.all;
22     license = licenses.mit;
23     maintainers = [ maintainers.volth ];
24   };