lol
0
fork

Configure Feed

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

at 17.09-beta 24 lines 626 B view raw
1{ stdenv, fetchFromGitHub, bzip2, qt4, qmake4Hook, libX11 }: 2 3stdenv.mkDerivation rec { 4 name = "evopedia-${version}"; 5 version = "0.4.4"; 6 7 src = fetchFromGitHub { 8 owner = "evopedia"; 9 repo = "evopedia_qt"; 10 rev = "v${version}"; 11 sha256 = "0snp5qiywj306kfaywvkl7j34fivgxcb8dids1lzmbqq5xcpqqvc"; 12 }; 13 14 buildInputs = [ bzip2 qt4 libX11 ]; 15 nativeBuildInputs = [ qmake4Hook ]; 16 17 meta = with stdenv.lib; { 18 description = "Offline Wikipedia Viewer"; 19 homepage = http://www.evopedia.info; 20 license = licenses.gpl3Plus; 21 maintainers = [ maintainers.qknight ]; 22 platforms = platforms.linux; 23 }; 24}