a lot more changes to get it to work on hpm
This commit is contained in:
19
mods/cbm.nix
Normal file
19
mods/cbm.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user