expect: cleanup, update license, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2021-02-12 04:23:10 +01:00
parent cd6ce0c534
commit b36b97dce6
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,8 +1,8 @@
{ lib, stdenv, fetchurl, tcl, makeWrapper, autoreconfHook }:
stdenv.mkDerivation rec {
version = "5.45.4";
pname = "expect";
version = "5.45.4";
src = fetchurl {
url = "mirror://sourceforge/expect/Expect/${version}/expect${version}.tar.gz";
@ -36,7 +36,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A tool for automating interactive applications";
homepage = "http://expect.sourceforge.net/";
license = "Expect";
license = licenses.publicDomain;
platforms = platforms.unix;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}