Merge pull request #232896 from SuperSandro2000/ceph-cleanup

ceph: use https to download src, use inherit
This commit is contained in:
Sandro 2023-05-23 00:56:46 +02:00 committed by GitHub
commit 40ceca38d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,11 +225,11 @@ let
cmd2
colorama
]);
sitePackages = ceph-python-env.python.sitePackages;
inherit (ceph-python-env.python) sitePackages;
version = "17.2.5";
src = fetchurl {
url = "http://download.ceph.com/tarballs/ceph-${version}.tar.gz";
url = "https://download.ceph.com/tarballs/ceph-${version}.tar.gz";
hash = "sha256-NiJpwUeROvh0siSaRoRrDm+C0s61CvRiIrbd7JmRspo=";
};
in rec {