Merge master into x-updates
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
26
pkgs/development/tools/misc/teensy/default.nix
Normal file
26
pkgs/development/tools/misc/teensy/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user