17 lines
460 B
Nix
17 lines
460 B
Nix
{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 = http://www.gnu.org/software/archimedes;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|