about summary refs log tree commit diff
path: root/pkgs/kde/gear/kamera/default.nix
blob: 3ab21c99f4edde80ead942c458eb3a20994460d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  mkKdeDerivation,
  pkg-config,
  libgphoto2,
}:
mkKdeDerivation {
  pname = "kamera";

  extraNativeBuildInputs = [pkg-config];
  extraBuildInputs = [libgphoto2];
}