tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
flent,http-getter: nixfmt
wxt
1 year ago
8a432a45
1984e1ca
+15
-5
2 changed files
expand all
collapse all
unified
split
pkgs
by-name
fl
flent
package.nix
ht
http-getter
package.nix
+3
-3
pkgs/by-name/fl/flent/package.nix
···
15
15
hash = "sha256-21gd6sPYCZll3Q2O7kucTRhXvc5byXeQr50+1bZVT3M=";
16
16
};
17
17
18
18
-
buildInputs = [python.pkgs.sphinx];
19
19
-
nativeBuildInputs = [qt5.wrapQtAppsHook];
18
18
+
buildInputs = [ python.pkgs.sphinx ];
19
19
+
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
20
20
propagatedBuildInputs = [
21
21
procps
22
22
python.pkgs.matplotlib
···
50
50
homepage = "https://flent.org";
51
51
license = licenses.gpl3;
52
52
53
53
-
maintainers = [maintainers.mmlb];
53
53
+
maintainers = [ maintainers.mmlb ];
54
54
};
55
55
}
+12
-2
pkgs/by-name/ht/http-getter/package.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake, curl, pkg-config }:
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchFromGitHub,
5
5
+
cmake,
6
6
+
curl,
7
7
+
pkg-config,
8
8
+
}:
2
9
3
10
stdenv.mkDerivation {
4
11
pname = "http-getter";
···
11
18
sha256 = "0plyqqwfm9bysichda0w3akbdxf6279wd4mx8mda0c4mxd4xy9nl";
12
19
};
13
20
14
14
-
nativeBuildInputs = [ cmake pkg-config ];
21
21
+
nativeBuildInputs = [
22
22
+
cmake
23
23
+
pkg-config
24
24
+
];
15
25
buildInputs = [ curl ];
16
26
17
27
meta = with lib; {