mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
0498ccd076
HTTP -> HTTPS for : - http://gnu.org/ - http://www.gnu.org/ - http://elpa.gnu.org/ - http://lists.gnu.org/ - http://gcc.gnu.org/ - http://ftp.gnu.org/ (except in fetchurl mirrors) - http://bugs.gnu.org/
18 lines
461 B
Nix
18 lines
461 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;
|
|
};
|
|
}
|