mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
908569cf06
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.
31 lines
774 B
Nix
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;
|
|
};
|
|
}
|