about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/librtprocess/default.nix
blob: adabbe11cb3e14d4769504631a37926b7ef06403 (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
{ 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 stdenv.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" ];
  };
}