2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-07-22 14:46:58 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lrzsz-0.12.20";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://ohse.de/uwe/releases/${name}.tar.gz";
|
|
|
|
sha256 = "1wcgfa9fsigf1gri74gq0pa7pyajk12m4z69x7ci9c6x9fqkd2y2";
|
|
|
|
};
|
|
|
|
|
2016-04-06 01:54:48 -07:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2014-07-22 14:46:58 -07:00
|
|
|
configureFlags = [ "--program-transform-name=s/^l//" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://ohse.de/uwe/software/lrzsz.html";
|
2014-07-22 14:46:58 -07:00
|
|
|
description = "Communication package providing the XMODEM, YMODEM ZMODEM file transfer protocols";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|