lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

eludris: init at 0.3.3

+38
+34
pkgs/tools/misc/eludris/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + , openssl 5 + , pkg-config 6 + , stdenv 7 + , Security 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "eludris"; 12 + version = "0.3.3"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "eludris"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + hash = "sha256-TVYgimkGUSITB3IaMlMd10PWomqyJRvONvJwiW85U4M="; 19 + }; 20 + 21 + cargoHash = "sha256-5B9D19jFh5+eNTjiho22CFsn51nmwLry08zSDWvs1OU="; 22 + 23 + cargoBuildFlags = [ "-p eludris" ]; 24 + cargoTestFlags = [ "-p eludris" ]; 25 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 26 + nativeBuildInputs = [ pkg-config ]; 27 + 28 + meta = with lib; { 29 + description = "A simple CLI to help you with setting up and managing your Eludris instance"; 30 + homepage = "https://github.com/eludris/eludris/tree/main/cli"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ ooliver1 ]; 33 + }; 34 + }
+4
pkgs/top-level/all-packages.nix
··· 555 555 556 556 efficient-compression-tool = callPackage ../tools/compression/efficient-compression-tool { }; 557 557 558 + eludris = callPackage ../tools/misc/eludris { 559 + inherit (darwin.apple_sdk.frameworks) Security; 560 + }; 561 + 558 562 enumer = callPackage ../tools/misc/enumer { }; 559 563 560 564 evans = callPackage ../development/tools/evans { };