From bea41a64b42309a9cf06a1bb50d26c04728ab26e Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Wed, 30 Jan 2008 19:38:07 +0000 Subject: lyx added svn path=/nixpkgs/trunk/; revision=10416 --- pkgs/applications/misc/lyx/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pkgs/applications/misc/lyx/default.nix (limited to 'pkgs/applications') diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix new file mode 100644 index 000000000000..246b8caa3ca0 --- /dev/null +++ b/pkgs/applications/misc/lyx/default.nix @@ -0,0 +1,18 @@ +# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc +args: +args.stdenv.mkDerivation { + name = "lyx-1.5.3"; + + src = args.fetchurl { + url = http://lyx.cybermirror.org/stable/lyx-1.5.3.tar.bz2; + sha256 = "1q0xlhrvj87iw9rk9z2vfka4jw5pw7n5fsmmiyzram9y4hghavav"; + }; + + buildInputs =(with args; [tetex qt python]); + + meta = { + description = "WYSIWYM frontend for LaTeX, DocBook, etc."; + homepage = "http://www.lyx.org"; + license = "GPL2"; + }; +} -- cgit 1.4.1