Merge pull request #307896 from Sigmanificient/orphan

treewide: adopt orphaned packages
This commit is contained in:
Jörg Thalheim 2024-04-30 08:33:40 +02:00 committed by GitHub
commit 50def3944a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 52 additions and 31 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,11 +37,10 @@ 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 = [ maintainers.sigmanificient ];
platforms = platforms.unix;
mainProgram = "gfold";
};

View File

@ -1,4 +1,9 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "cista";
@ -19,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "https://cista.rocks";
description = "A simple, high-performance, zero-copy C++ serialization & reflection library";
license = licenses.mit;
maintainers = [];
maintainers = [ maintainers.sigmanificient ];
platforms = platforms.all;
};
}

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 { };
@ -31,7 +40,7 @@ stdenv.mkDerivation rec {
description = "A tiny boost library in C++11";
homepage = "https://github.com/idealvin/coost";
license = licenses.mit;
maintainers = [];
maintainers = [ maintainers.sigmanificient ];
platforms = platforms.unix;
};
}

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 {
@ -35,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = "https://openquantumsafe.org";
license = licenses.mit;
platforms = platforms.all;
maintainers = [];
maintainers = [ maintainers.sigmanificient ];
};
}

View File

@ -1,4 +1,9 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "libsv";
@ -17,7 +22,7 @@ stdenv.mkDerivation rec {
description = "Public domain cross-platform semantic versioning in C99";
homepage = "https://github.com/uael/sv";
license = licenses.unlicense;
maintainers = [];
maintainers = [ lib.maintainers.sigmanificient ];
platforms = platforms.unix;
};
}