2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2008-02-13 15:23:09 +01:00
|
|
|
|
2021-06-02 22:32:14 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "replace";
|
|
|
|
version = "2.24";
|
2007-07-15 13:59:33 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-02 22:32:14 +02:00
|
|
|
url = "http://hpux.connect.org.uk/ftp/hpux/Users/replace-${version}/replace-${version}-src-11.31.tar.gz";
|
|
|
|
sha256 = "18hkwhaz25s6209n5mpx9hmkyznlzygqj488p2l7nvp9zrlxb9sf";
|
2007-07-15 13:59:33 +02:00
|
|
|
};
|
|
|
|
|
2018-02-19 19:52:08 +01:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2019-10-27 14:03:25 +01:00
|
|
|
makeFlags = [ "TREE=\$(out)" "MANTREE=\$(TREE)/share/man" ];
|
2007-09-27 16:48:09 +02:00
|
|
|
|
2014-09-18 14:07:03 +02:00
|
|
|
preBuild = ''
|
|
|
|
sed -e "s@/bin/mv@$(type -P mv)@" -i replace.h
|
|
|
|
'';
|
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
preInstall = "mkdir -p \$out/share/man";
|
2008-02-15 12:14:40 +01:00
|
|
|
postInstall = "mv \$out/bin/replace \$out/bin/replace-literal";
|
|
|
|
|
2008-02-22 19:19:04 +01:00
|
|
|
patches = [./malloc.patch];
|
|
|
|
|
2007-07-15 13:59:33 +02:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://replace.richardlloyd.org.uk/";
|
2008-02-13 15:23:09 +01:00
|
|
|
description = "A tool to replace verbatim strings";
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2007-07-15 13:59:33 +02:00
|
|
|
};
|
2008-02-22 19:19:04 +01:00
|
|
|
}
|