Merge pull request #142164 from jbedo/last

last: 1179 -> 1256
conduit-nginx
Artturi 2021-10-22 08:37:19 +03:00 committed by GitHub
commit 493094366b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -1,12 +1,14 @@
{ lib, stdenv, fetchurl, unzip, zlib, python3, parallel }: { lib, stdenv, fetchFromGitLab, unzip, zlib, python3, parallel }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "last"; pname = "last";
version = "1179"; version = "1256";
src = fetchurl { src = fetchFromGitLab {
url = "http://last.cbrc.jp/last-${version}.zip"; owner = "mcfrith";
sha256 = "sha256-949oiE7ZNkCOJuOK/huPkCN0c4TlVaTskkBe0joc0HU="; repo = "last";
rev = version;
sha256 = "sha256-lOsU0X4K6jYcbkTzwQV+KAerQh9odE4zCLtSgZrYH6s=";
}; };
nativeBuildInputs = [ unzip ]; nativeBuildInputs = [ unzip ];