lol
1{ stdenv, lib, fetchurl, ncurses }:
2
3stdenv.mkDerivation rec {
4 name = "ht-${version}";
5 version = "2.1.0";
6 src = fetchurl {
7 url = "http://sourceforge.net/projects/hte/files/ht-source/ht-${version}.tar.bz2";
8 sha256 = "0w2xnw3z9ws9qrdpb80q55h6ynhh3aziixcfn45x91bzrbifix9i";
9 };
10 buildInputs = [
11 ncurses
12 ];
13 meta = with lib; {
14 description = "File editor/viewer/analyzer for executables";
15 homepage = "http://hte.sourceforge.net";
16 license = licenses.gpl2;
17 platforms = platforms.linux;
18 maintainers = with maintainers; [ cstrahan ];
19 };
20}