nixpkgs/pkgs/applications/misc/lyx/default.nix

25 lines
718 B
Nix
Raw Normal View History

# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
, libX11, qt
}:
stdenv.mkDerivation rec {
2012-08-05 12:22:52 +00:00
version = "2.0.4";
name = "lyx-${version}";
src = fetchurl {
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
2012-08-05 12:22:52 +00:00
sha256 = "137dzmz1z6aqz9mdj8gmmi0k60s9sfn6gy916j175cwzq6hpncb8";
};
buildInputs = [texLive qt python makeWrapper pkgconfig ];
meta = {
description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
homepage = "http://www.lyx.org";
license = "GPL2";
maintainers = [ stdenv.lib.maintainers.neznalek ];
platforms = stdenv.lib.platforms.linux;
};
}