5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
21 lines
305 B
Nix
21 lines
305 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
bison,
|
|
flex,
|
|
boost,
|
|
python3,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kopeninghours";
|
|
|
|
extraNativeBuildInputs = [bison flex];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
(boost.override {
|
|
enablePython = true;
|
|
python = python3;
|
|
})
|
|
python3
|
|
];
|
|
}
|