lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
8a59eec4 253ca495

+27 -5
+3 -3
pkgs/applications/virtualization/pods/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "pods"; 18 - version = "1.0.0-beta.4"; 18 + version = "1.0.0-beta.5"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "marhkb"; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - sha256 = "1j5rz43860n17qcxmc5dj8sll3y593jj9zz1sfvnx4g0694sp0cl"; 24 + sha256 = "sha256-Bp/ILQY5Xa8wrq7v9O9QohWzlevdN3MwMjjnlimt6HM="; 25 25 }; 26 26 27 27 cargoDeps = rustPlatform.fetchCargoTarball { 28 28 inherit src; 29 29 name = "${pname}-${version}"; 30 - sha256 = "sha256-tj0ROO8HmFWyQLYDrdywOneHz6X43dRZJFTB+aw+m7o="; 30 + sha256 = "sha256-iToznqaNXArVrSdDXGPJol3OeFdM3J8VgYSs+mjM0SE="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+1 -1
pkgs/development/interpreters/dart/default.nix
··· 61 61 62 62 meta = with lib; { 63 63 homepage = "https://www.dartlang.org/"; 64 - maintainers = with maintainers; [ grburst flexagoon ]; 64 + maintainers = with maintainers; [ grburst ]; 65 65 description = "Scalable programming language, with robust libraries and runtimes, for building web, server, and mobile apps"; 66 66 longDescription = '' 67 67 Dart is a class-based, single inheritance, object-oriented language
+1 -1
pkgs/development/tools/hover/default.nix
··· 41 41 homepage = "https://github.com/go-flutter-desktop/hover"; 42 42 license = licenses.bsd3; 43 43 platforms = platforms.linux; 44 - maintainers = with maintainers; [ ericdallo flexagoon ]; 44 + maintainers = with maintainers; [ ericdallo ]; 45 45 }; 46 46 47 47 subPackages = [ "." ];
+20
pkgs/tools/misc/lemmeknow/default.nix
··· 1 + { lib, rustPlatform, fetchCrate }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "lemmeknow"; 5 + version = "0.6.0"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-xDHgIo6VGBp27JMqhG4r/MZTIAA8ViAJqWJNchZywTs="; 10 + }; 11 + 12 + cargoSha256 = "sha256-bPI8S2hNQnIPj8Sl0QYs6piCdWSUYFH1qcf7DL+oxIo="; 13 + 14 + meta = with lib; { 15 + description = "A tool to identify anything"; 16 + homepage = "https://github.com/swanandx/lemmeknow"; 17 + license = licenses.mit; 18 + maintainers = with maintainers; [ figsoda ]; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 8640 8640 8641 8641 leela = callPackage ../tools/graphics/leela { }; 8642 8642 8643 + lemmeknow = callPackage ../tools/misc/lemmeknow { }; 8644 + 8643 8645 lethe = callPackage ../tools/security/lethe { 8644 8646 inherit (darwin.apple_sdk.frameworks) Security; 8645 8647 };