Merge pull request #166470 from mstarzyk/tab-9.1

tab: 9.0 -> 9.1

authored by Mario Rodas and committed by GitHub ee0079e0 d441aabf

+3 -7
+3 -7
pkgs/tools/text/tab/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "9.0"; 4 + version = "9.1"; 5 5 pname = "tab"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ivan-tkatchev"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-2keVGPRYV2KCeJ+LgAcl74cjW5wvp6Rmy7VNMtdliBE="; 11 + sha256 = "sha256-AhgWeV/ojB8jM16A5ggrOD1YjWfRVcoQbkd3S2bgdyE="; 12 12 }; 13 13 14 14 checkInputs = [ python3 ]; 15 15 16 16 doCheck = !stdenv.isDarwin; 17 17 18 - preCheck = '' 19 - substituteInPlace Makefile --replace "python2 go2.py" "python go.py" 20 - ''; 21 - 22 18 checkTarget = "test"; 23 19 24 20 installPhase = '' ··· 32 28 33 29 meta = with lib; { 34 30 description = "Programming language/shell calculator"; 35 - homepage = "https://tkatchev.bitbucket.io/tab/"; 31 + homepage = "http://tab-lang.xyz"; 36 32 license = licenses.boost; 37 33 maintainers = with maintainers; [ mstarzyk ]; 38 34 platforms = with platforms; unix;