fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 mkDerivation, lib, stdenv,
3 bison, extra-cmake-modules, flex,
4 media-player-info, qtbase, qtdeclarative, qttools
5}:
6
7mkDerivation {
8 pname = "solid";
9 patches = [ ./fix-search-path.patch ];
10 nativeBuildInputs = [ bison extra-cmake-modules flex ]
11 ++ lib.optionals stdenv.isLinux [ media-player-info ];
12 buildInputs = [ qtdeclarative qttools ];
13 propagatedBuildInputs = [ qtbase ];
14 propagatedUserEnvPkgs = lib.optionals stdenv.isLinux [ media-player-info ];
15}