Commit bde4e0bd authored by Abhishek Singh's avatar Abhishek Singh
Browse files

emacsPackages.straight: init at 0-unstable-2024-10-06

parent 15556579
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@ lib.packagesFromDirectoryRecursive {
      ;
  };

  straight = callPackage ./manual-packages/straight { inherit (pkgs) git; };

  structured-haskell-mode = self.shm;

  texpresso = callPackage ./manual-packages/texpresso { inherit (pkgs) texpresso; };
+30 −0
Original line number Diff line number Diff line
{
  melpaBuild,
  fetchFromGitHub,
  git,
  unstableGitUpdater,
  lib,
}:

melpaBuild {
  pname = "straight";
  version = "0-unstable-2024-10-06";

  src = fetchFromGitHub {
    owner = "radian-software";
    repo = "straight.el";
    rev = "33fb4695066781c634ff1c3c81ba96e880deccf7";
    hash = "sha256-3NPVLTn0ka0RvSLXW9gDKam3xajp62/mLupc8uyatzo=";
  };

  nativeBuildInputs = [ git ];

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    homepage = "https://github.com/radian-software/straight.el";
    description = "Next-generation, purely functional package manager for the Emacs hacker";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ abhisheksingh0x558 ];
  };
}