From 8152fcd22a31949429e4f3d91b8c57687bbdf2db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Mancilla?= Date: Sun, 18 Aug 2024 18:15:23 -0400 Subject: [PATCH] quickfix: format --- .../libraries/quickfix/default.nix | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/quickfix/default.nix b/pkgs/development/libraries/quickfix/default.nix index 6644b9885c25..29fc8fffd104 100644 --- a/pkgs/development/libraries/quickfix/default.nix +++ b/pkgs/development/libraries/quickfix/default.nix @@ -1,13 +1,21 @@ -{ 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; - rev = "v${version}"; + 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;