Commit 8152fcd2 authored by Sebastián Mancilla's avatar Sebastián Mancilla
Browse files

quickfix: format

parent 553b9595
Loading
Loading
Loading
Loading
+17 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoconf, automake, libtool }:
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  autoconf,
  automake,
  libtool,
}:

stdenv.mkDerivation rec {
  pname = "quickfix";
  version = "1.15.1";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    owner = "quickfix";
    repo = "quickfix";
    rev = "v${version}";
    sha256 = "1fgpwgvyw992mbiawgza34427aakn5zrik3sjld0i924a9d17qwg";
  };
@@ -21,7 +29,11 @@ stdenv.mkDerivation rec {
  ];

  # autoreconfHook does not work
  nativeBuildInputs = [ autoconf automake libtool ];
  nativeBuildInputs = [
    autoconf
    automake
    libtool
  ];

  enableParallelBuilding = true;