about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T14·48+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T14·48+0100
commitb475f7166ea13593ce0e0eb30d57e0463268196f (patch)
treea4530f4384039b69592e27f43f276d22a46aae94
parentd6cf2fe4622180032ca51f8a4ccb64d532ba3cdb (diff)
Delete unused .nix expressions
These were never more than scratch buffers that I used when I was feeling around
in the dark trying to learn Nix.
-rw-r--r--emacs/.emacs.d/wpc/list.nix8
-rw-r--r--emacs/.emacs.d/wpc/prelude.nix11
-rw-r--r--emacs/.emacs.d/wpc/string.nix8
3 files changed, 0 insertions, 27 deletions
diff --git a/emacs/.emacs.d/wpc/list.nix b/emacs/.emacs.d/wpc/list.nix
deleted file mode 100644
index e664ba6fd4a1..000000000000
--- a/emacs/.emacs.d/wpc/list.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ 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;
-}
diff --git a/emacs/.emacs.d/wpc/prelude.nix b/emacs/.emacs.d/wpc/prelude.nix
deleted file mode 100644
index 626d4526a25d..000000000000
--- a/emacs/.emacs.d/wpc/prelude.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ pkgs ? import (builtins.fetchTarball
-  "https://github.com/tazjin/depot/archive/master.tar.gz") {} }:
-
-# Ciruclar dependency warning: list.nix depends on prelude.nix, which depends on
-# list.nix.
-pkgs.writeElispBin {
-  name = "prelude";
-  # If this can build with epkgs.ht, remove `(require 'ht)`.
-  deps = epkgs: [ epkgs.s epkgs.dash epkgs.f ./string.nix ./list.nix ];
-  src = ./prelude.el;
-}
diff --git a/emacs/.emacs.d/wpc/string.nix b/emacs/.emacs.d/wpc/string.nix
deleted file mode 100644
index 1f815b26bb37..000000000000
--- a/emacs/.emacs.d/wpc/string.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ 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;
-}