Trying to add lisp libraries

This commit is contained in:
nostoromo root
2020-11-23 14:22:51 -08:00
parent 0605314e07
commit f85d8c3ef7
2 changed files with 46 additions and 5 deletions
+13 -2
View File
@@ -1,7 +1,18 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
let
lispPackageRepo = builtins.fetchGit {
url = "https://git.fudo.org/fudo-public/lisp-packages.git";
};
in {
nixpkgs.config.packageOverrides = pkgs: rec {
fudoLispPackages = import "${lispPackageRepo}" {
unstablePkgs = import <nixos-unstable> {};
inherit lib;
};
letsencrypt-ca = import ./letsencrypt-ca.nix {
stdenv = pkgs.stdenv;
fetchurl = builtins.fetchurl;