fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 mkDerivation, lib,
3 extra-cmake-modules,
4 qtbase
5}:
6
7mkDerivation {
8 name = "kitemmodels";
9 meta = {
10 maintainers = [ lib.maintainers.ttuegel ];
11 broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
12 };
13 nativeBuildInputs = [ extra-cmake-modules ];
14 propagatedBuildInputs = [ qtbase ];
15 outputs = [ "out" "dev" ];
16}