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

This commit is contained in:
Abhishek Singh
2025-01-27 01:08:25 +05:30
parent 1555657967
commit bde4e0bd69
2 changed files with 32 additions and 0 deletions
@@ -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; };
@@ -0,0 +1,30 @@
{
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 ];
};
}