rhash: 1.3.8 -> 1.3.9

+ refresh meta.homepage
+ set meta.license (0BSD starting with 1.3.9)
This commit is contained in:
c0bw3b 2019-12-21 17:52:50 +01:00 committed by Frederik Rietdijk
parent d19071f1c4
commit 1156a04c7f

View File

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, which }: { stdenv, fetchFromGitHub, which }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.3.8"; version = "1.3.9";
pname = "rhash"; pname = "rhash";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rhash"; owner = "rhash";
repo = "RHash"; repo = "RHash";
rev = "v${version}"; rev = "v${version}";
sha256 = "0i00wl63hn80g0s9gdi772gchbghwgkvn4nbb5227y2wwy30yyi2"; sha256 = "06i49x1l21h2q7pfnf4crbmjyg8b9ad0qs10ywyyn5sjpi0c21wq";
}; };
nativeBuildInputs = [ which ]; nativeBuildInputs = [ which ];
@ -23,8 +23,9 @@ stdenv.mkDerivation rec {
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ]; installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://rhash.anz.ru; homepage = "http://rhash.sourceforge.net/";
description = "Console utility and library for computing and verifying hash sums of files"; description = "Console utility and library for computing and verifying hash sums of files";
license = licenses.bsd0;
platforms = platforms.all; platforms = platforms.all;
maintainers = [ maintainers.andrewrk ]; maintainers = [ maintainers.andrewrk ];
}; };