depot/third_party/nixpkgs/pkgs/applications/science/electronics/archimedes/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

17 lines
463 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 = "https://www.gnu.org/software/archimedes";
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux;
};
}