forked from mirrors/nixpkgs
tweak: init at 3.20
This commit is contained in:
parent
6648ef5d25
commit
a4d5f49603
21
pkgs/applications/editors/tweak/default.nix
Normal file
21
pkgs/applications/editors/tweak/default.nix
Normal file
|
@ -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…
Reference in a new issue