nixpkgs/pkgs/applications/science/electronics/alliance/default.nix
Bjørn Forsman 28ac782583 Some description fixes
There are many more packages to fix, this is just a start.

Rules:
 * Don't repeat the package name (not always that easy...)
 * Start with capital letter
 * Don't end with full stop
 * Don't start with "The ..." or "A ..."

I've also added descriptions to some packages and rewritten others.
2013-10-05 19:36:23 +02:00

24 lines
726 B
Nix

{stdenv, fetchurl, xproto, motif, libX11, libXt, libXpm, bison, flex}:
stdenv.mkDerivation {
name = "alliance-5.0-20070718";
src = fetchurl {
url = http://www-asim.lip6.fr/pub/alliance/distribution/5.0/alliance-5.0-20070718.tar.gz;
sha256 = "4e17c8f9f4d344061166856d47e58527c6ae870fda0c73b5ba0200967d23af9f";
};
buildInputs = [ xproto motif xproto libX11 libXt libXpm bison flex];
patchPhase = ''
sed -i -e \
"s/private: static void operator delete/public: static void operator delete/" \
nero/src/ADefs.h
'';
meta = {
description = "Complete set of free CAD tools and portable libraries for VLSI design";
homepage = http://www-asim.lip6.fr/recherche/alliance/;
};
}