Adding GNU archimedes.

svn path=/nixpkgs/trunk/; revision=31505
This commit is contained in:
Lluís Batlle i Rossell
2012-01-12 19:23:47 +00:00
parent 1c186a3207
commit 4238637b40
2 changed files with 19 additions and 0 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "archimedes-2.0.0";
src = fetchurl {
url = "mirror://gnu/archimedes/${name}.tar.gz";
sha256 = "1ajg4xvk5slv05fsbikrina9g4bmhx8gykk249yz21pir67sdk4x";
};
meta = {
description = "GNU package for semiconductor device simulations";
homepage = http://www.gnu.org/software/archimedes;
license = "GPLv2+";
platforms = with stdenv.lib.platforms; linux;
};
}