nixpkgs/pkgs/tools/text/replace/default.nix
Ricardo M. Correia 908569cf06 replace: fix URL and hash
The old URL wasn't available anymore.

There is a minor version change but it's only an unimportant change to
the Makefile and some changes to the documentation.
2021-06-03 19:31:27 +02:00

31 lines
774 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "replace";
version = "2.24";
src = fetchurl {
url = "http://hpux.connect.org.uk/ftp/hpux/Users/replace-${version}/replace-${version}-src-11.31.tar.gz";
sha256 = "18hkwhaz25s6209n5mpx9hmkyznlzygqj488p2l7nvp9zrlxb9sf";
};
outputs = [ "out" "man" ];
makeFlags = [ "TREE=\$(out)" "MANTREE=\$(TREE)/share/man" ];
preBuild = ''
sed -e "s@/bin/mv@$(type -P mv)@" -i replace.h
'';
preInstall = "mkdir -p \$out/share/man";
postInstall = "mv \$out/bin/replace \$out/bin/replace-literal";
patches = [./malloc.patch];
meta = {
homepage = "https://replace.richardlloyd.org.uk/";
description = "A tool to replace verbatim strings";
platforms = lib.platforms.unix;
};
}