55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv
 | 
						|
, lib
 | 
						|
, fetchFromGitHub
 | 
						|
, cmake
 | 
						|
, orcania
 | 
						|
, systemd
 | 
						|
, check
 | 
						|
, subunit
 | 
						|
, withSystemd ? stdenv.isLinux
 | 
						|
}:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  pname = "yder";
 | 
						|
  version = "1.4.14";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "babelouest";
 | 
						|
    repo = pname;
 | 
						|
    rev = "v${version}";
 | 
						|
    sha256 = "sha256-4FSUBFqrxTbqg2EKYuXv4gUeE40ViNZRk5gHv+C2p9o=";
 | 
						|
  };
 | 
						|
 | 
						|
  patches = [
 | 
						|
    # We set CMAKE_INSTALL_LIBDIR to the absolute path in $out, so
 | 
						|
    # prefix and exec_prefix cannot be $out, too
 | 
						|
    ./fix-pkgconfig.patch
 | 
						|
  ];
 | 
						|
 | 
						|
  nativeBuildInputs = [ cmake ];
 | 
						|
 | 
						|
  buildInputs = [ orcania ]
 | 
						|
    ++ lib.optional withSystemd systemd;
 | 
						|
 | 
						|
  checkInputs = [ check subunit ];
 | 
						|
 | 
						|
  cmakeFlags = [
 | 
						|
    "-DBUILD_YDER_TESTING=on"
 | 
						|
  ] ++ lib.optional (!withSystemd) "-DWITH_JOURNALD=off";
 | 
						|
 | 
						|
  doCheck = true;
 | 
						|
 | 
						|
  preCheck = ''
 | 
						|
    export LD_LIBRARY_PATH="$(pwd)''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
 | 
						|
    export DYLD_FALLBACK_LIBRARY_PATH="$(pwd):$DYLD_FALLBACK_LIBRARY_PATH"
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "Logging library for C applications";
 | 
						|
    homepage = "https://github.com/babelouest/yder";
 | 
						|
    license = licenses.lgpl21;
 | 
						|
    maintainers = with maintainers; [ johnazoidberg ];
 | 
						|
    platforms = platforms.all;
 | 
						|
  };
 | 
						|
}
 |