Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "librtprocess"; 5 version = "0.12.0"; 6 7 src = fetchFromGitHub { 8 owner = "CarVac"; 9 repo = pname; 10 rev = version; 11 sha256 = "sha256-/1o6SWUor+ZBQ6RsK2PoDRu03jcVRG58PNYFttriH2w="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 homepage = "https://github.com/CarVac/librtprocess"; 18 description = "Highly optimized library for processing RAW images"; 19 license = licenses.gpl3; 20 maintainers = with maintainers; [ hjones2199 ]; 21 platforms = [ "x86_64-linux" ]; 22 }; 23}