nixpkgs/pkgs/development/libraries/librtprocess/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
584 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2020-12-07 20:26:25 +00:00
stdenv.mkDerivation rec {
pname = "librtprocess";
2022-03-18 10:18:07 +00:00
version = "0.12.0";
2020-12-07 20:26:25 +00:00
src = fetchFromGitHub {
owner = "CarVac";
repo = pname;
rev = version;
2022-03-18 10:18:07 +00:00
sha256 = "sha256-/1o6SWUor+ZBQ6RsK2PoDRu03jcVRG58PNYFttriH2w=";
2020-12-07 20:26:25 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
2020-12-07 20:26:25 +00:00
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" ];
};
}