mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
656cd8bf80
svn path=/nixpkgs/trunk/; revision=8987
19 lines
411 B
Nix
19 lines
411 B
Nix
{stdenv, fetchurl}:
|
|
stdenv.mkDerivation {
|
|
name = "replace-2.24";
|
|
|
|
src = fetchurl {
|
|
url = ftp://hpux.connect.org.uk/hpux/Users/replace-2.24/replace-2.24-src-11.11.tar.gz;
|
|
sha256 = "1c2nkxx83vmlh1v3ib6r2xqh121gdb1rharwsimcb2h0xwc558dm";
|
|
};
|
|
|
|
buildInputs = [];
|
|
makeFlags = " TREE=\$(out) ";
|
|
|
|
meta = {
|
|
description = "
|
|
Replace verbatim strings. Sed is not fit to do it. Replace is.
|
|
";
|
|
};
|
|
}
|