aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorAaron Lindsay <aerialx@users.noreply.github.com>2019-03-26 22:50:05 -0700
committerAaron Lindsay <aerialx@users.noreply.github.com>2019-03-26 22:50:05 -0700
commit6bfdee81073572950922ce491b5b9be261fc8848 (patch)
tree93b0368bc697a8e6472496e0993cf1f85004a75c /pkgs/development/misc
parenta4cc81746a0de17ffceeb90a3700fe242cb5cb5b (diff)
fixup! mspdebug: init at 0.25
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/msp430/mspdebug.nix8
1 files 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";