nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchFromCodeberg,
4 stdenvNoCC,
5}:
6
7stdenvNoCC.mkDerivation (finalAttrs: {
8 pname = "cat9";
9 version = "0-unstable-2025-12-26";
10
11 src = fetchFromCodeberg {
12 owner = "letoram";
13 repo = "cat9";
14 rev = "8d2b30545c3e87c8f2e161d755b53c23a48bcf05";
15 hash = "sha256-KSXfa7K8SxnyPmSNCXZs8C+gGYxkLRu0MFbJ3cotSEQ=";
16 };
17
18 dontConfigure = true;
19
20 dontBuild = true;
21
22 installPhase = ''
23 runHook preInstall
24
25 mkdir -p ${placeholder "out"}/share/arcan/appl/cat9
26 cp -a ./* ${placeholder "out"}/share/arcan/appl/cat9
27
28 runHook postInstall
29 '';
30
31 meta = {
32 homepage = "https://github.com/letoram/cat9";
33 description = "User shell for LASH";
34 license = with lib.licenses; [ unlicense ];
35 maintainers = [ ];
36 platforms = lib.platforms.all;
37 };
38})