summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/prison.nix
blob: 670fd02d6161bc4d3fa6f33dd41539e809d7e142 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  mkDerivation,
  extra-cmake-modules,
  libdmtx, qrencode, qtbase,
}:

mkDerivation {
  name = "prison";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ libdmtx qrencode ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}