Unverified Commit 600c18b5 authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #248039 from Uthar/sb-cga

sbcl.pkgs.nsb-cga: add missing dependency on sb-cga
parents aa3e1905 0e814ccf
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -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