tweak: init at 3.20

wip/yesman
rnhmjoj 8 years ago
parent 6648ef5d25
commit a4d5f49603
  1. 21
      pkgs/applications/editors/tweak/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,21 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
name = "tweak-${version}";
version = "3.02";
src = fetchurl {
url = "http://www.chiark.greenend.org.uk/~sgtatham/tweak/${name}.tar.gz";
sha256 = "06js54pr5hwpwyxj77zs5s40n5aqvaw48dkj7rid2d47pyqijk2v";
};
buildInputs = [ ncurses ];
preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out";
meta = with stdenv.lib; {
description = "An efficient hex editor";
homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak";
license = licenses.mit;
platform = platforms.unix;
};
}

@ -6335,6 +6335,8 @@ let
texi2html = callPackage ../development/tools/misc/texi2html { };
tweak = callPackage ../applications/editors/tweak { };
uhd = callPackage ../development/tools/misc/uhd { };
uisp = callPackage ../development/tools/misc/uisp { };

Loading…
Cancel
Save