at v206 566 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "bash-completion-2.1"; 5 6 src = fetchurl { 7 url = "http://bash-completion.alioth.debian.org/files/${name}.tar.bz2"; 8 sha256 = "0kxf8s5bw7y50x0ksb77d3kv0dwadixhybl818w27y6mlw26hq1b"; 9 }; 10 11 patches = [ ./bash-4.3.patch ]; 12 13 doCheck = true; 14 15 meta = { 16 homepage = "http://bash-completion.alioth.debian.org/"; 17 description = "Programmable completion for the bash shell"; 18 license = "GPL"; 19 20 platforms = stdenv.lib.platforms.unix; 21 maintainers = [ stdenv.lib.maintainers.simons ]; 22 }; 23}