Merge pull request #248039 from Uthar/sb-cga

sbcl.pkgs.nsb-cga: add missing dependency on sb-cga
This commit is contained in:
7c6f434c 2023-08-09 06:35:08 +00:00 committed by GitHub
commit 600c18b511
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -799,6 +799,22 @@ let
]; ];
}; };
sb-cga = build-asdf-system {
pname = "sb-cga";
version = "1.0.1";
src = pkgs.fetchFromGitHub {
owner = "nikodemus";
repo = "sb-cga";
rev = "9a554ea1c01cac998ff7eaa5f767bc5bcdc4c094";
sha256 = "sha256-iBM+VXu6JRqGmeIFzfXbGot+elvangmfSpDB7DjFpPg";
};
lispLibs = [ super.alexandria ];
};
nsb-cga = super.nsb-cga.overrideLispAttrs (oa: {
lispLibs = oa.lispLibs ++ [ self.sb-cga ];
});
}); });
in packages in packages