Commit 8e356b5b authored by Fiona Behrens's avatar Fiona Behrens
Browse files

framework-tool: remove duplicated framework-system-tools and move maintainers

parent 68f23b0b
Loading
Loading
Loading
Loading
+0 −1312

File deleted.

Preview size limit exceeded, changes collapsed.

+0 −45
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, udev
}:

let
  rev = "491a587342a5d79366a25d803b7065169314279c";
in rustPlatform.buildRustPackage {
  pname = "framework-system-tools";
  version = "unstable-2023-11-14";

  src = fetchFromGitHub {
    owner = "FrameworkComputer";
    repo = "framework-system";
    inherit rev;
    hash = "sha256-qDtW4DvY19enCfkOBRaako9ngAkmSreoNWlL4QE2FAk=";
  };

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    udev
  ];

  cargoLock = {
    lockFile = ./Cargo.lock;
    outputHashes = {
      "smbios-lib-0.9.1" = "sha256-3L8JaA75j9Aaqg1z9lVs61m6CvXDeQprEFRq+UDCHQo=";
      "uefi-0.20.0" = "sha256-/3WNHuc27N89M7s+WT64SHyFOp7YRyzz6B+neh1vejY=";
    };
  };

  meta = with lib; {
    description = "Rust libraries and tools to interact with the framework system.";
    homepage = "https://github.com/FrameworkComputer/framework-system";
    mainProgram = "framework_tool";
    license = licenses.bsd3;
    maintainers = with maintainers; [ kloenk leona ];
    platforms = [ "x86_64-linux" ];
  };
}
+2 −2
Original line number Diff line number Diff line
{ lib, rustPlatform, fetchFromGitHub, pkg-config, udev }:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage {
  pname = "framework-tool";

  # Latest stable version 0.1.0 has an ssh:// git URL in Cargo.lock,
@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
    homepage = "https://github.com/FrameworkComputer/framework-system";
    license = licenses.bsd3;
    platforms = [ "x86_64-linux" ];
    maintainers = with maintainers; [ nickcao ];
    maintainers = with maintainers; [ nickcao leona kloenk ];
    mainProgram = "framework_tool";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -270,6 +270,7 @@ mapAliases ({
  foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
  foxitreader = throw "foxitreader has been removed because it had vulnerabilities and was unmaintained"; # added 2023-02-20
  fractal-next = fractal; # added 2023-11-25
  framework-system-tools = framework-tool; # added 2023-12-09
  fuse2fs = if stdenv.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too.
  fx_cast_bridge = fx-cast-bridge; # added 2023-07-26