biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / redpanda / base64.nix
blob305456c55ccf8a1fd5f629bef001359282bc391d
1 { clangStdenv
2 , cmake
3 , fetchFromGitHub
4 , lib
5 }:
6 let
7   pname = "base64";
8   version = "0.5.0";
9 in
10 clangStdenv.mkDerivation {
11   inherit pname version;
12   src = fetchFromGitHub {
13     owner = "aklomp";
14     repo = "base64";
15     rev = "v${version}";
16     sha256 = "sha256-2HNI9ycT9f+NLwLElEuR61qmTguOsI+kNxv01ipxSqQ=";
17   };
18   nativeBuildInputs = [ cmake ];
19   meta = with lib; {
20     description = "Fast Base64 stream encoder/decoder in C99, with SIMD acceleration";
21     license = licenses.bsd2;
22     homepage = "https://github.com/aklomp/base64";
23     maintainers = with maintainers; [ avakhrenev ];
24     platforms = platforms.unix;
25   };