1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

flent,http-getter: nixfmt

This commit is contained in:
wxt 2024-10-27 15:32:39 +08:00
parent 1984e1cab9
commit 8a432a45a3
No known key found for this signature in database
GPG key ID: 8281D5EE2D1825A4
2 changed files with 15 additions and 5 deletions

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 ];
};
}

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; {