24 lines
651 B
Nix
24 lines
651 B
Nix
{ stdenv, fetchgit, bzip2, qt4, qmake4Hook, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "evopedia-${version}";
|
|
version = "0.4.4";
|
|
|
|
src = fetchgit {
|
|
url = https://github.com/evopedia/evopedia_qt;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0snp5qiywj306kfaywvkl7j34fivgxcb8dids1lzmbqq5xcpqqvc";
|
|
};
|
|
|
|
buildInputs = [ bzip2 qt4 libX11 ];
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
meta = {
|
|
description = "Offline Wikipedia Viewer";
|
|
homepage = http://www.evopedia.info;
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
maintainers = with stdenv.lib.maintainers; [ qknight ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|