about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/string.nix
blob: 1f815b26bb37e3045097aeb48a8a346d0865f4e1 (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 = "string";
  deps = epkgs: [ epkgs.dash epkgs.s ./prelude.nix ];
  src = ./string.el;
}