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

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