Fix formatting

I'll squash this later
This commit is contained in:
PopeRigby
2024-12-09 14:42:38 -08:00
parent 3993addae1
commit 3243543030
+5 -13
View File
@@ -1,10 +1,4 @@
{
cmake,
fetchFromGitHub,
lib,
ninja,
stdenv,
}:
{ cmake, fetchFromGitHub, lib, ninja, stdenv, }:
stdenv.mkDerivation rec {
pname = "tacent";
@@ -13,17 +7,15 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "bluescan";
repo = "tacent";
tag = version;
tag = version;
hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8=";
};
nativeBuildInputs = [
cmake
ninja
];
nativeBuildInputs = [ cmake ninja ];
meta = {
description = "C++ library providing linear algebra and various utility functions";
description =
"C++ library providing linear algebra and various utility functions";
longDescription = ''
A C++ library implementing linear algebra, text and file IO, UTF-N conversions,
containers, image loading/saving, image quantization/filtering, command-line parsing, etc.