tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Fix formatting again
PopeRigby
1 year ago
53ecadce
32435430
+12
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ta
tacent
package.nix
+12
-4
pkgs/by-name/ta/tacent/package.nix
···
1
-
{ cmake, fetchFromGitHub, lib, ninja, stdenv, }:
0
0
0
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "tacent";
···
11
hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8=";
12
};
13
14
-
nativeBuildInputs = [ cmake ninja ];
0
0
0
15
16
meta = {
17
-
description =
18
-
"C++ library providing linear algebra and various utility functions";
19
longDescription = ''
20
A C++ library implementing linear algebra, text and file IO, UTF-N conversions,
21
containers, image loading/saving, image quantization/filtering, command-line parsing, etc.
···
1
+
{
2
+
cmake,
3
+
fetchFromGitHub,
4
+
lib,
5
+
ninja,
6
+
stdenv,
7
+
}:
8
9
stdenv.mkDerivation rec {
10
pname = "tacent";
···
17
hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8=";
18
};
19
20
+
nativeBuildInputs = [
21
+
cmake
22
+
ninja
23
+
];
24
25
meta = {
26
+
description = "C++ library providing linear algebra and various utility functions";
0
27
longDescription = ''
28
A C++ library implementing linear algebra, text and file IO, UTF-N conversions,
29
containers, image loading/saving, image quantization/filtering, command-line parsing, etc.