1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
8 url = "https://www.chiark.greenend.org.uk/~sgtatham/tweak/${pname}-${version}.tar.gz";
9 sha256 = "06js54pr5hwpwyxj77zs5s40n5aqvaw48dkj7rid2d47pyqijk2v";
12 buildInputs = [ ncurses ];
13 preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out";
14 makeFlags = [ "CC:=$(CC)" "LINK:=$(CC)" ];
17 description = "An efficient hex editor";
18 homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak";
19 license = licenses.mit;
20 platforms = platforms.unix;