a lot more changes to get it to work on hpm

This commit is contained in:
Sebastian Moser
2023-10-31 16:14:10 +00:00
parent 197a40364c
commit 91f23c5632
24 changed files with 403 additions and 343 deletions

19
mods/cbm.nix Normal file
View File

@@ -0,0 +1,19 @@
{ stdenv
, fetchFromGitHub
, libncurses
}:
stdenv.mkDerivation rec {
pname = "cbm";
version = "0.3.2";
src = fetchFromGitHub {
owner = "resurrecting-open-source-projects";
repo = "cbm";
tag = version;
};
nativeBuildInputs = [
libncurses
];
}