added seperate meta-environment packages, use callpackage for aterm28

svn path=/nixpkgs/trunk/; revision=23394
This commit is contained in:
Rob Vermaas
2010-08-24 13:20:55 +00:00
parent 689b834242
commit 68a6fa773a
21 changed files with 1933 additions and 18 deletions
@@ -0,0 +1,22 @@
{ stdenv
, fetchurl
, aterm
, ptSupport
, pkgconfig
}:
let
isMingw = stdenv ? cross && stdenv.cross.config == "i686-pc-mingw32" ;
in
stdenv.mkDerivation rec {
name = "ptable-support-1.2";
src = fetchurl {
url = "http://www.meta-environment.org/releases/${name}.tar.gz";
sha256 = "0bqx1xsimf9vq6q2qnsy3565rzlha4cm2blcn3kqwbirfyj1kln9";
};
buildInputs = [aterm ptSupport];
buildNativeInputs = [pkgconfig];
dontStrip = isMingw;
}