Unverified Commit bc3d663a authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

disktui: init at 1.2.0 (#467941)

parents 7cffd31e 49ffc744
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -11190,6 +11190,11 @@
    githubId = 3698237;
    name = "ImUrX";
  };
  Inarizxc = {
    name = "Inarizxc";
    github = "Inarizxc";
    githubId = 128096405;
  };
  inclyc = {
    email = "i@lyc.dev";
    github = "inclyc";
+25 −0
Original line number Diff line number Diff line
{
  fetchFromGitHub,
  rustPlatform,
  lib,
}:
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "disktui";
  version = "1.2.0";
  src = fetchFromGitHub {
    owner = "Maciejonos";
    repo = "disktui";
    tag = "v${finalAttrs.version}";
    hash = "sha256-FDpdOpyvdU2Uw22am/Vkdls+s6ZdmodNt3WAQd8L53I=";
  };
  cargoHash = "sha256-CBSd/zeThyhmsaKx8Pg+u14QEQVq5nPLcRKet9n8WC8=";

  meta = {
    description = "TUI for disk management on Linux";
    homepage = "https://github.com/Maciejonos/disktui";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ Inarizxc ];
    platforms = lib.platforms.linux;
    mainProgram = "disktui";
  };
})