ocamlPackages.safepass: 2.0 → 3.0

This commit is contained in:
Vincent Laporte 2020-10-20 21:45:46 +02:00 committed by Vincent Laporte
parent 44465f606e
commit 4b3e97daa4

View File

@ -1,33 +1,21 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild }: { lib, fetchFromGitHub, buildDunePackage }:
let param = buildDunePackage rec {
if stdenv.lib.versionAtLeast ocaml.version "4.02" pname = "safepass";
then { version = "3.0";
version = "2.0";
url = "http://forge.ocamlcore.org/frs/download.php/1615/ocaml-safepass-2.0.tgz"; src = fetchFromGitHub {
sha256 = "1zxx3wcyzhxxvm5w9c21y7hpa11h67paaaz9mfsyiqk6fs6hcvmw"; owner = "darioteixeira";
} else { repo = "ocaml-safepass";
version = "1.3"; rev = "v${version}";
url = "http://forge.ocamlcore.org/frs/download.php/1432/ocaml-safepass-1.3.tgz"; sha256 = "0i127gs9x23wzwa1q3dxa2j6hby07hvxdg1c98fc3j09rg6vy2bs";
sha256 = "0lb8xbpyc5d1zml7s7mmcr6y2ipwdp7qz73lkv9asy7dyi6cj15g";
}; };
in
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-safepass-${param.version}";
src = fetchurl {
inherit (param) url sha256;
};
buildInputs = [ ocaml findlib ocamlbuild ];
createFindlibDestdir = true;
meta = { meta = {
homepage = "http://ocaml-safepass.forge.ocamlcore.org/"; inherit (src.meta) homepage;
description = "An OCaml library offering facilities for the safe storage of user passwords"; description = "An OCaml library offering facilities for the safe storage of user passwords";
license = stdenv.lib.licenses.lgpl21; license = lib.licenses.lgpl21;
platforms = ocaml.meta.platforms or []; maintainers = with lib.maintainers; [ vbgl ];
maintainers = with stdenv.lib.maintainers; [ vbgl ];
}; };
} }