nixpkgs/pkgs/development/libraries/ptable-support/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

23 lines
456 B
Nix

{ 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];
nativeBuildInputs = [pkgconfig];
dontStrip = isMingw;
}