treewide: reformat

This commit is contained in:
Sigmanificient 2024-04-30 05:54:10 +02:00
parent b6203d5e08
commit 0d9edccbb8
5 changed files with 47 additions and 26 deletions

View File

@ -1,13 +1,12 @@
{ fetchFromGitHub
, gitMinimal
, gfold
, lib
, libiconv
, makeWrapper
, rustPlatform
, Security
, stdenv
, testers
{
fetchFromGitHub,
gfold,
lib,
libiconv,
rustPlatform,
Security,
stdenv,
testers,
}:
let
@ -26,7 +25,10 @@ rustPlatform.buildRustPackage {
cargoHash = "sha256-wDUOYK9e0i600UnJ0w0FPI2GhTa/QTq/2+ICiDWrmEU=";
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
buildInputs = lib.optionals stdenv.isDarwin [
libiconv
Security
];
passthru.tests.version = testers.testVersion {
package = gfold;
@ -35,8 +37,7 @@ rustPlatform.buildRustPackage {
};
meta = with lib; {
description =
"CLI tool to help keep track of your Git repositories, written in Rust";
description = "CLI tool to help keep track of your Git repositories, written in Rust";
homepage = "https://github.com/nickgerace/gfold";
license = licenses.asl20;
maintainers = [ maintainers.sigmanificient ];

View File

@ -1,4 +1,9 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "cista";

View File

@ -1,5 +1,14 @@
{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, gitUpdater
, withCurl ? true, withOpenSSL ? true }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
curl,
openssl,
gitUpdater,
withCurl ? true,
withOpenSSL ? true,
}:
stdenv.mkDerivation rec {
pname = "coost";
@ -21,9 +30,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = lib.optional withCurl curl ++ lib.optional withOpenSSL openssl;
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]
++ lib.optional withCurl "-DWITH_LIBCURL=ON"
++ lib.optional withOpenSSL "-DWITH_OPENSSL=ON";
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
] ++ lib.optional withCurl "-DWITH_LIBCURL=ON" ++ lib.optional withOpenSSL "-DWITH_OPENSSL=ON";
passthru.updateScript = gitUpdater { };

View File

@ -1,9 +1,10 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, openssl
, enableStatic ? stdenv.hostPlatform.isStatic
{
lib,
stdenv,
fetchFromGitHub,
cmake,
openssl,
enableStatic ? stdenv.hostPlatform.isStatic,
}:
stdenv.mkDerivation rec {

View File

@ -1,4 +1,9 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "libsv";