2015-05-27 03:23:55 +02:00
|
|
|
{ stdenv, lib, fetchurl, ncurses }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ht";
|
2015-05-27 03:23:55 +02:00
|
|
|
version = "2.1.0";
|
2016-02-11 01:57:17 +01:00
|
|
|
|
2015-05-27 03:23:55 +02:00
|
|
|
src = fetchurl {
|
2016-08-20 15:33:27 +02:00
|
|
|
url = "mirror://sourceforge/project/hte/ht-source/ht-${version}.tar.bz2";
|
2015-05-27 03:23:55 +02:00
|
|
|
sha256 = "0w2xnw3z9ws9qrdpb80q55h6ynhh3aziixcfn45x91bzrbifix9i";
|
|
|
|
};
|
2016-02-11 01:57:17 +01:00
|
|
|
|
2015-05-27 03:23:55 +02:00
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
];
|
2016-02-11 01:57:17 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 01:57:17 +01:00
|
|
|
|
2018-03-10 13:53:54 +01:00
|
|
|
patches = [ ./gcc7.patch ];
|
|
|
|
|
2015-05-27 03:23:55 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "File editor/viewer/analyzer for executables";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://hte.sourceforge.net";
|
2015-05-27 03:23:55 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
};
|
|
|
|
}
|