2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-07-22 22:46:58 +01: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 09:54:48 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2014-07-22 22:46:58 +01:00
|
|
|
configureFlags = [ "--program-transform-name=s/^l//" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://ohse.de/uwe/software/lrzsz.html";
|
2014-07-22 22:46:58 +01:00
|
|
|
description = "Communication package providing the XMODEM, YMODEM ZMODEM file transfer protocols";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|