lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

firestr: fix build (qt5.multimedia was missing)

+12 -12
+12 -12
pkgs/applications/networking/p2p/firestr/default.nix
··· 4 4 stdenv.mkDerivation { 5 5 name = "firestr-0.8"; 6 6 7 - buildInputs = [ cmake boost botan snappy libopus libuuid qt5.base libXScrnSaver openssl ]; 8 - 9 7 src = fetchFromGitHub { 10 8 owner = "mempko"; 11 9 repo = "firestr"; ··· 13 11 sha256 = "0s2kdi8rw3i3f8gbiy0ykyi6xj5n8p80m0d1i86mhh8jpagvbfzb"; 14 12 }; 15 13 14 + buildInputs = [ cmake boost botan snappy libopus libuuid qt5.base qt5.multimedia 15 + libXScrnSaver openssl ]; 16 + 16 17 patches = ./return.patch; 17 18 18 - postPatch = 19 - '' 19 + postPatch = '' 20 20 substituteInPlace CMakeLists.txt \ 21 21 --replace "set(Boost_USE_STATIC_LIBS on)" "" \ 22 22 --replace "/usr/include/botan" "${botan}/include/botan" \ 23 23 --replace "libopus.a" "libopus.so" \ 24 24 --replace "libsnappy.a" "libsnappy.so" \ 25 25 --replace "libbotan-1.10.a" "libbotan-1.10.so.0" 26 - ''; 26 + ''; 27 27 28 - meta = with stdenv.lib; 29 - { description = "Grass computing platform"; 30 - homepage = http://firestr.com/; 31 - license = licenses.gpl3; 32 - maintainers = [ maintainers.emery ]; 33 - platforms = platforms.linux; 34 - }; 28 + meta = with stdenv.lib; { 29 + description = "Grass computing platform"; 30 + homepage = http://firestr.com/; 31 + license = licenses.gpl3; 32 + maintainers = [ maintainers.emery ]; 33 + platforms = platforms.linux; 34 + }; 35 35 }