summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorAaron Lindsay <aerialx@users.noreply.github.com>2019-03-25 19:31:23 -0700
committerAaron Lindsay <aerialx@users.noreply.github.com>2019-03-25 20:33:58 -0700
commit02a1d3b24a94a21844ae545a9eb9ee00b61e0f63 (patch)
tree53ef72ca56b879ba4648f3d8b6e41eeff28656a9 /pkgs/development/misc
parent1eca945e948f89cf8baf0bfc6f91c303985fefbf (diff)
downloadnixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.tar
nixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.tar.gz
nixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.tar.bz2
nixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.tar.lz
nixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.tar.xz
nixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.tar.zst
nixpkgs-02a1d3b24a94a21844ae545a9eb9ee00b61e0f63.zip
msp430: vendor header package
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/msp430/gcc-support.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/misc/msp430/gcc-support.nix b/pkgs/development/misc/msp430/gcc-support.nix
new file mode 100644
index 00000000000..c24af992019
--- /dev/null
+++ b/pkgs/development/misc/msp430/gcc-support.nix
@@ -0,0 +1,30 @@
+{ stdenvNoCC, fetchzip }:
+
+let
+  mspgccVersion = "6_1_0_0";
+  version = "1.206";
+in stdenvNoCC.mkDerivation {
+  name = "msp430-gcc-support-files-${version}";
+  src = fetchzip {
+    url = "http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/${mspgccVersion}/exports/msp430-gcc-support-files-${version}.zip";
+    sha256 = "0h297jms3gkmdcqmfpr3cg6v9wxnms34qbwvwl2fkmrz20vk766q";
+  };
+
+  buildCommand = ''
+    install -Dm0644 -t $out/lib $src/include/*.ld
+    install -Dm0644 -t $out/include $src/include/*.h
+
+    # appease bintoolsWrapper_addLDVars, search path needed for ld scripts
+    touch $out/lib/lib
+  '';
+
+  meta = with stdenvNoCC.lib; {
+    description = ''
+      Development headers and linker scripts for TI MSP430 microcontrollers.
+    '';
+    homepage = https://www.ti.com/tool/msp430-gcc-opensource;
+    license = licenses.bsd3;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ aerialx ];
+  };
+}