Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
538 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
mkDerivation,
lib,
stdenv,
bison,
extra-cmake-modules,
flex,
media-player-info,
qtbase,
qtdeclarative,
qttools,
}:
mkDerivation {
pname = "solid";
patches = [ ./fix-search-path.patch ];
nativeBuildInputs = [
bison
extra-cmake-modules
flex
]
++ lib.optionals stdenv.hostPlatform.isLinux [ media-player-info ];
buildInputs = [
qtdeclarative
qttools
];
propagatedBuildInputs = [ qtbase ];
propagatedUserEnvPkgs = lib.optionals stdenv.hostPlatform.isLinux [ media-player-info ];
}