about summary refs log tree commit diff
path: root/users/glittershark/emacs.d/snippets/nix-mode
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/emacs.d/snippets/nix-mode')
-rw-r--r--users/glittershark/emacs.d/snippets/nix-mode/fetchFromGitHub12
-rw-r--r--users/glittershark/emacs.d/snippets/nix-mode/pythonPackage16
-rw-r--r--users/glittershark/emacs.d/snippets/nix-mode/sha2567
3 files changed, 0 insertions, 35 deletions
diff --git a/users/glittershark/emacs.d/snippets/nix-mode/fetchFromGitHub b/users/glittershark/emacs.d/snippets/nix-mode/fetchFromGitHub
deleted file mode 100644
index 9b9373573048..000000000000
--- a/users/glittershark/emacs.d/snippets/nix-mode/fetchFromGitHub
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- mode: snippet -*-
-# name: fetchFromGitHub
-# uuid:
-# key: fetchFromGitHub
-# condition: t
-# --
-fetchFromGitHub {
-                owner = "$1";
-                repo = "$2";
-                rev = "$3";
-                sha256 = "0000000000000000000000000000000000000000000000000000";
-}
\ No newline at end of file
diff --git a/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage b/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage
deleted file mode 100644
index 0a74c21e1857..000000000000
--- a/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage
+++ /dev/null
@@ -1,16 +0,0 @@
-# key: pypkg
-# name: pythonPackage
-# condition: t
-# --
-${1:pname} = buildPythonPackage rec {
-           name = "\${pname}-\${version}";
-           pname = "$1";
-           version = "${2:1.0.0}";
-           src = fetchPypi {
-               inherit pname version;
-               sha256 = "0000000000000000000000000000000000000000000000000000";
-           };
-           propagatedBuildInputs = with pythonSelf; [
-               $3
-           ];
-};
\ No newline at end of file
diff --git a/users/glittershark/emacs.d/snippets/nix-mode/sha256 b/users/glittershark/emacs.d/snippets/nix-mode/sha256
deleted file mode 100644
index e3d52e1c0201..000000000000
--- a/users/glittershark/emacs.d/snippets/nix-mode/sha256
+++ /dev/null
@@ -1,7 +0,0 @@
-# -*- mode: snippet -*-
-# name: sha256
-# uuid:
-# key: sha256
-# condition: t
-# --
-sha256 = "0000000000000000000000000000000000000000000000000000";
\ No newline at end of file