blob: e664ba6fd4a1fd71e7af89a4268adb20834a9feb (
plain) (
blame)
1
2
3
4
5
6
7
8
|
{ pkgs ? import (builtins.fetchTarball
"https://github.com/tazjin/depot/archive/master.tar.gz") {} }:
pkgs.writeElispBin {
name = "list";
deps = epkgs: [ epkgs.dash ./prelude.nix ];
src = ./list.el;
}
|