2013-04-10 16:39:03 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2011-07-21 23:02:01 +01:00
|
|
|
|
2013-04-10 16:39:03 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-28 16:45:45 +01:00
|
|
|
name = "bash-completion-${version}";
|
|
|
|
version = "2.4";
|
2011-07-21 23:02:01 +01:00
|
|
|
|
2013-04-10 16:39:03 +01:00
|
|
|
src = fetchurl {
|
2016-09-28 16:45:45 +01:00
|
|
|
url = "https://github.com/scop/bash-completion/releases/download/${version}/${name}.tar.xz";
|
|
|
|
sha256 = "1xlhd09sb2w3bw8qaypxgkr0782w082mcbx8zf7yzjgy0996pxy0";
|
2011-07-21 23:02:01 +01:00
|
|
|
};
|
|
|
|
|
2012-08-20 09:34:30 +01:00
|
|
|
doCheck = true;
|
2011-07-21 23:02:01 +01:00
|
|
|
|
2016-09-28 16:45:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/scop/bash-completion;
|
2011-07-21 23:02:01 +01:00
|
|
|
description = "Programmable completion for the bash shell";
|
2016-09-28 16:45:45 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.peti ];
|
2011-07-21 23:02:01 +01:00
|
|
|
};
|
|
|
|
}
|