Merge pull request #142164 from jbedo/last

last: 1179 -> 1256

authored by Artturi and committed by GitHub 49309436 c7a997f6

+7 -5
+7 -5
pkgs/applications/science/biology/last/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, zlib, python3, parallel }: 1 + { lib, stdenv, fetchFromGitLab, unzip, zlib, python3, parallel }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "last"; 5 - version = "1179"; 5 + version = "1256"; 6 6 7 - src = fetchurl { 8 - url = "http://last.cbrc.jp/last-${version}.zip"; 9 - sha256 = "sha256-949oiE7ZNkCOJuOK/huPkCN0c4TlVaTskkBe0joc0HU="; 7 + src = fetchFromGitLab { 8 + owner = "mcfrith"; 9 + repo = "last"; 10 + rev = version; 11 + sha256 = "sha256-lOsU0X4K6jYcbkTzwQV+KAerQh9odE4zCLtSgZrYH6s="; 10 12 }; 11 13 12 14 nativeBuildInputs = [ unzip ];