summary refs log tree commit diff
path: root/pkgs/development/libraries/librtprocess/default.nix
blob: 3e44bfd3d7dd9749f15ff652e86899801188bd4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "librtprocess";
  version = "0.11.0";

  src = fetchFromGitHub {
    owner = "CarVac";
    repo = pname;
    rev = version;
    sha256 = "1bivy3rymmmkdx5phbxq4qaq15hw633dgpks57z9ara15mh817xx";
  };

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    homepage = "https://github.com/CarVac/librtprocess";
    description = "Highly optimized library for processing RAW images";
    license = licenses.gpl3;
    maintainers = with maintainers; [ hjones2199 ];
    platforms = [ "x86_64-linux" ];
  };
}