Merge master into x-updates

This commit is contained in:
Vladimír Čunát
2014-02-20 20:55:31 +01:00
156 changed files with 2274 additions and 1007 deletions

View File

@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://www.gnu.org/software/autoconf/;
description = "Part of the GNU Build System";
branch = "2.13";
longDescription = ''
GNU Autoconf is an extensible package of M4 macros that produce

View File

@@ -2,12 +2,12 @@
cabal.mkDerivation (self: {
pname = "cpphs";
version = "1.18";
sha256 = "0b5hpqbzvw5dzkbjxqyc2d7ll2c6zf9wd8k182zhvz3kyxmkvs2s";
version = "1.18.1";
sha256 = "1fshsd1dzmrl3qbpwf7r2c30d08l77080j9cfchcgy1lijjr9vhm";
isLibrary = true;
isExecutable = true;
meta = {
homepage = "http://haskell.org/cpphs/";
homepage = "http://projects.haskell.org/cpphs/";
description = "A liberalised re-implementation of cpp, the C pre-processor";
license = "LGPL";
platforms = self.ghc.meta.platforms;

View File

@@ -0,0 +1,26 @@
{ stdenv, fetchurl, unzip, libusb }:
let
version = "2.1";
in
stdenv.mkDerivation {
name = "teensy-loader-${version}";
src = fetchurl {
url = "http://www.pjrc.com/teensy/teensy_loader_cli.2.1.zip";
sha256 = "0iidj3q0l2hds1gaadnwgni4qdgk6r0nv101986jxda8cw6h9zfs";
};
buildInputs = [ unzip libusb ];
installPhase = ''
mkdir -p $out/bin
cp -v teensy_loader_cli $out/bin/
'';
meta = with stdenv.lib; {
license = licenses.gpl3;
description = "Firmware uploader for the Teensy microcontroller board";
homepage = http://www.pjrc.com/teensy/;
maintainers = with maintainers; [ the-kenny ];
platforms = platforms.linux;
};
}