From 3c2ba9df1ae2a0631ab3144600a34eba56cdd606 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 24 Feb 2011 18:08:16 +0000 Subject: [PATCH] Dropped file that was checked in by accident. Thanks, Ludo, for catching this mistake. svn path=/nixpkgs/trunk/; revision=26102 --- pkgs/applications/networking/default.nix | 36 ------------------------ 1 file changed, 36 deletions(-) delete mode 100644 pkgs/applications/networking/default.nix diff --git a/pkgs/applications/networking/default.nix b/pkgs/applications/networking/default.nix deleted file mode 100644 index a4787c24b9e1..000000000000 --- a/pkgs/applications/networking/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ stdenv, fetchurl, clisp, texinfo, perl }: - -let - name = "maxima"; - version = "5.23.2"; -in -stdenv.mkDerivation { - name = "${name}-${version}"; - - src = fetchurl { - url = "mirror://sourceforge/${name}/${name}-${version}.tar.gz"; - sha256 = "0x6fl7lm2jmybd5n3l5qpyvcj9f5zfwizk7wkbpgkjimh58n5skv"; - }; - - preConfigure = '' - configureFlags="--infodir=$out/share/info --mandir=$out/share/man" - ''; - - buildInputs = [clisp texinfo perl]; - - meta = { - description = "Maxima computer algebra system"; - homepage = "http://maxima.sourceforge.net"; - license = "GPLv2"; - - longDescription = '' - Maxima is a fairly complete computer algebra system written in - lisp with an emphasis on symbolic computation. It is based on - DOE-MACSYMA and licensed under the GPL. Its abilities include - symbolic integration, 3D plotting, and an ODE solver. - ''; - - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simons ]; - }; -}