Merge pull request #125871 from NixOS/backport-125431-to-release-21.05

This commit is contained in:
Sandro 2021-06-06 02:02:13 +02:00 committed by GitHub
commit 17d3c8bc81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -1,11 +1,12 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation {
name = "replace-2.24";
stdenv.mkDerivation rec {
pname = "replace";
version = "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";
url = "http://hpux.connect.org.uk/ftp/hpux/Users/replace-${version}/replace-${version}-src-11.31.tar.gz";
sha256 = "18hkwhaz25s6209n5mpx9hmkyznlzygqj488p2l7nvp9zrlxb9sf";
};
outputs = [ "out" "man" ];