Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / editors / tweak / default.nix
blobf6b241c9d07f069b001cfe25d2fe66dd3dc9dac7
1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "tweak";
5   version = "3.02";
7   src = fetchurl {
8     url = "https://www.chiark.greenend.org.uk/~sgtatham/tweak/${pname}-${version}.tar.gz";
9     sha256 = "06js54pr5hwpwyxj77zs5s40n5aqvaw48dkj7rid2d47pyqijk2v";
10   };
12   buildInputs = [ ncurses ];
13   preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out";
14   makeFlags = [ "CC:=$(CC)" "LINK:=$(CC)" ];
16   meta = with lib; {
17     description = "An efficient hex editor";
18     homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak";
19     license = licenses.mit;
20     platforms = platforms.unix;
21   };