summary refs log tree commit diff
path: root/pkgs/development/libraries/arm-frc-linux-gnueabi-linux-api-headers/default.nix
blob: 29e349e0a820f3e1028e69c57b168eef9c1f5657 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{stdenv, fetchurl}:

let
  _target = "arm-frc-linux-gnueabi";
  _basever = "3.19-r0.36";
  src = fetchurl {
    url = "http://download.ni.com/ni-linux-rt/feeds/2016/arm/ipk/cortexa9-vfpv3/linux-libc-headers-dev_${_basever}_cortexa9-vfpv3.ipk";
    sha256 = "10066ddb9a19bf764a9a67919a7976478041e98c44c19308f076c78ecb07408c";
  };
in
stdenv.mkDerivation rec {
  version = "3.19";
  name = "${_target}-linux-api-headers-${version}";

  sourceRoot = ".";
  inherit src;

  phases = [ "unpackPhase" "installPhase" ];

  unpackCmd = ''
    ar x $curSrc
    tar xf data.tar.gz
  '';

  installPhase = ''
    mkdir -p $out/${_target}
    find . \( -name .install -o -name ..install.cmd \) -delete
    cp -r usr/ $out/${_target}
  '';

  meta = {
    description = "FRC linux api headers";
    longDescription = ''
      All linux api headers required to compile the arm-frc-linux-gnuaebi-gcc
      cross compiler and all user programs.
    '';
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.colescott ];
    platforms = stdenv.lib.platforms.linux;

    priority = 1;
  };
}