flent,http-getter: nixfmt

This commit is contained in:
wxt
2024-10-27 22:32:39 +08:00
parent 1984e1cab9
commit 8a432a45a3
2 changed files with 15 additions and 5 deletions
+3 -3
View File
@@ -15,8 +15,8 @@ buildPythonApplication rec {
hash = "sha256-21gd6sPYCZll3Q2O7kucTRhXvc5byXeQr50+1bZVT3M=";
};
buildInputs = [python.pkgs.sphinx];
nativeBuildInputs = [qt5.wrapQtAppsHook];
buildInputs = [ python.pkgs.sphinx ];
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
propagatedBuildInputs = [
procps
python.pkgs.matplotlib
@@ -50,6 +50,6 @@ buildPythonApplication rec {
homepage = "https://flent.org";
license = licenses.gpl3;
maintainers = [maintainers.mmlb];
maintainers = [ maintainers.mmlb ];
};
}
+12 -2
View File
@@ -1,4 +1,11 @@
{ lib, stdenv, fetchFromGitHub, cmake, curl, pkg-config }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
curl,
pkg-config,
}:
stdenv.mkDerivation {
pname = "http-getter";
@@ -11,7 +18,10 @@ stdenv.mkDerivation {
sha256 = "0plyqqwfm9bysichda0w3akbdxf6279wd4mx8mda0c4mxd4xy9nl";
};
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [ curl ];
meta = with lib; {