feat: add initial modules

This commit is contained in:
2026-02-20 15:10:12 +01:00
parent 9d9d85f1ef
commit 4a2dac4118
15 changed files with 468 additions and 0 deletions

29
packages/ahab.nix Normal file
View File

@@ -0,0 +1,29 @@
{ nixpkgs, system, ... }:
let
pkgs = import nixpkgs { inherit system; };
version = "v0.3.2";
in
pkgs.rustPlatform.buildRustPackage {
pname = "ahab";
inherit version;
src = pkgs.fetchFromGitea {
domain = "git.janezic.dev";
owner = "janezicmatej";
repo = "ahab";
rev = version;
sha256 = "sha256-bL8LPpD5k97XPYftXhPr7V/LNOB71pcBlsfBjJUIeG8";
};
cargoHash = "sha256-f8omNtjLF5gMJGgxdzWifStcs8d4fu++EegR2auObXE";
buildType = "debug";
meta = {
description = "ahab";
homepage = "https://git.janezic.dev/janezicmatej/ahab";
license = pkgs.lib.licenses.mit;
maintainers = [ ];
};
}