My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/lisp-modules/quicklisp-to-nix/nix-package.emb

23 lines
611 B

/* Generated file. */
args @ { fetchurl, ... }:
rec {
baseName = "<% @var filename %>";
version = "<% @var version %>";<% @if parasites %>
parasites = [<% (dolist (p (getf env :parasites)) (format t " \"~A\"" p)) %> ];<% @endif %>
description = <%= (format nil "~s" (cl-emb::getf-emb "description")) %>;
deps = [ <% @loop deps %>args."<% @var filename %>" <% @endloop %>];
src = fetchurl {
url = "<% @var url %>";
sha256 = "<% @var sha256 %>";
};
packageName = "<% @var name %>";
asdFilesToKeep = ["<% @var name %>.asd"];
overrides = x: x;
}
/* <%= cl-emb-intern::topenv %> */