summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/archimedes/default.nix
blob: 1377231c152b63edddc569d3cca9f63857d52d45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "archimedes-2.0.1";

  src = fetchurl {
    url = "mirror://gnu/archimedes/${name}.tar.gz";
    sha256 = "0jfpnd3pns5wxcxbiw49v5sgpmm5b4v8s4q1a5292hxxk2hzmb3z";
  };

  meta = {
    description = "GNU package for semiconductor device simulations";
    homepage = "https://www.gnu.org/software/archimedes";
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = with stdenv.lib.platforms; linux;
  };
}