From 6bfdee81073572950922ce491b5b9be261fc8848 Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Tue, 26 Mar 2019 22:50:05 -0700 Subject: [PATCH] fixup! mspdebug: init at 0.25 --- pkgs/development/misc/msp430/mspdebug.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/misc/msp430/mspdebug.nix b/pkgs/development/misc/msp430/mspdebug.nix index a39dd4cfc04..0456c8eae76 100644 --- a/pkgs/development/misc/msp430/mspdebug.nix +++ b/pkgs/development/misc/msp430/mspdebug.nix @@ -11,11 +11,9 @@ in stdenv.mkDerivation { sha256 = "0prgwb5vx6fd4bj12ss1bbb6axj2kjyriyjxqrzd58s5jyyy8d3c"; }; - buildInputs = [ readline libusb ]; - makeFlags = [ - "PREFIX=$(out)" - "INSTALL=install" - ] ++ (if readline == null then ["WITHOUT_READLINE=1"] else []); + buildInputs = [ libusb readline ]; + makeFlags = [ "PREFIX=$(out)" "INSTALL=install" ] ++ + (if readline == null then [ "WITHOUT_READLINE=1" ] else []); meta = with stdenv.lib; { description = "A free programmer, debugger, and gdb proxy for MSP430 MCUs";