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:
parent
1984e1cab9
commit
8a432a45a3
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue