Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11-beta 29 lines 808 B view raw
1{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, libgcrypt }: 2 3stdenv.mkDerivation rec { 4 pname = "libcotp"; 5 version = "2.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "paolostivanin"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-QvDYdplPhivG4a2otT4MuSY546a2Dw/amWly5aheabQ="; 12 }; 13 14 postPatch = lib.optionalString stdenv.cc.isClang '' 15 substituteInPlace CMakeLists.txt \ 16 --replace "add_link_options(-Wl," "# add_link_options(-Wl," 17 ''; 18 19 buildInputs = [ libgcrypt ]; 20 nativeBuildInputs = [ cmake pkg-config ]; 21 22 meta = with lib; { 23 description = "C library that generates TOTP and HOTP"; 24 homepage = "https://github.com/paolostivanin/libcotp"; 25 license = licenses.asl20; 26 maintainers = with maintainers; [ alexbakker ]; 27 platforms = platforms.all; 28 }; 29}