about summary refs log tree commit diff
path: root/pkgs/kde/gear/kopeninghours/default.nix
blob: b315d765fb396c321e88df02ce03dc9ff0ce8895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  mkKdeDerivation,
  qtdeclarative,
  bison,
  flex,
  boost,
  python3,
}:
mkKdeDerivation {
  pname = "kopeninghours";

  extraNativeBuildInputs = [bison flex];
  extraBuildInputs = [
    qtdeclarative
    (boost.override {
      enablePython = true;
      python = python3;
    })
  ];
}