about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix b/nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix
new file mode 100644
index 000000000000..3b20326d96f5
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchurl, emacs }:
+
+# this package installs the emacs-mode which
+# resides in the hsc3 sources.
+
+let version = "0.15";
+
+in stdenv.mkDerivation {
+  pname = "hsc3-mode";
+  inherit version;
+  src = fetchurl {
+    url = "mirror://hackage/hsc3-0.15/hsc3-0.15.tar.gz";
+    sha256 = "2f3b15655419cf8ebe25ab1c6ec22993b2589b4ffca7c3a75ce478ca78a0bde6";
+  };
+
+  buildInputs = [ emacs ];
+
+  installPhase = ''
+    mkdir -p "$out/share/emacs/site-lisp"
+    cp "emacs/hsc3.el" "$out/share/emacs/site-lisp"
+  '';
+
+  meta = {
+    homepage = "http://rd.slavepianos.org/?t=hsc3";
+    description = "hsc3 mode package for Emacs";
+    platforms = lib.platforms.unix;
+  };
+}