3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/shells/bash-completion/default.nix

22 lines
578 B
Nix
Raw Normal View History

2013-04-10 16:39:03 +01:00
{ stdenv, fetchurl }:
2013-04-10 16:39:03 +01:00
stdenv.mkDerivation rec {
2016-09-28 16:45:45 +01:00
name = "bash-completion-${version}";
2017-02-06 20:58:29 +00:00
version = "2.5";
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";
2017-02-06 20:58:29 +00:00
sha256 = "1kwmii1z1ljx5i4z702ynsr8jgrq64bj9w9hl3n2aa2kcl659fdh";
};
doCheck = true;
2016-09-28 16:45:45 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/scop/bash-completion;
description = "Programmable completion for the bash shell";
2016-09-28 16:45:45 +01:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.peti ];
};
}