about summary refs log tree commit diff
path: root/pkgs/applications/editors/ht
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2015-05-26 21:23:55 -0400
committerCharles Strahan <charles.c.strahan@gmail.com>2015-05-27 11:48:05 -0400
commita22cffa7bb3f00bdeccfcc959323966526f9b1d9 (patch)
tree5f011c710c6f3ea15964a8f3a9589c35f5b28177 /pkgs/applications/editors/ht
parent6c2fc83a858a6453b9e4671345a654d6b177c5b1 (diff)
downloadnixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.tar
nixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.tar.gz
nixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.tar.bz2
nixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.tar.lz
nixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.tar.xz
nixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.tar.zst
nixlib-a22cffa7bb3f00bdeccfcc959323966526f9b1d9.zip
ht: new package
HT is a file editor/viewer/analyzer for executables.
Diffstat (limited to 'pkgs/applications/editors/ht')
-rw-r--r--pkgs/applications/editors/ht/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/editors/ht/default.nix b/pkgs/applications/editors/ht/default.nix
new file mode 100644
index 000000000000..b7acdb7f1d53
--- /dev/null
+++ b/pkgs/applications/editors/ht/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, lib, fetchurl, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "ht-${version}";
+  version = "2.1.0";
+  src = fetchurl {
+    url = "http://sourceforge.net/projects/hte/files/ht-source/ht-${version}.tar.bz2";
+    sha256 = "0w2xnw3z9ws9qrdpb80q55h6ynhh3aziixcfn45x91bzrbifix9i";
+  };
+  buildInputs = [
+    ncurses
+  ];
+  meta = with lib; {
+    description = "File editor/viewer/analyzer for executables";
+    homepage = "http://hte.sourceforge.net";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ cstrahan ];
+  };
+}