Skip to content
Snippets Groups Projects
Commit bd512533 authored by Jani Mustonen's avatar Jani Mustonen Committed by mujx
Browse files

Update package.nix to include QT Multimedia (#165)

parent 65672d3d
No related branches found
No related tags found
No related merge requests found
{ pkgs, stdenv, qtbase, qttranslations, lmdb, mkDerivation, cmake }:
{ pkgs, stdenv, qtbase, qttranslations, qtmultimedia, lmdb, mkDerivation, cmake }:
stdenv.mkDerivation rec {
version = "0.1.0";
name = "nheko-${version}";
......@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
(type == "symlink" && name == "result") ))
./.;
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase qttranslations lmdb ];
buildInputs = [ qtbase qttranslations qtmultimedia lmdb ];
installPhase = ''
mkdir -p $out/bin
cp nheko $out/bin/nheko
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment