Merge pull request #61824 from vlaci/multipath-tools-1

multipath-tools: fix download URL and adjust download URL

authored by Matthew Bauer and committed by GitHub fcd012ee 28b4f7b6

+3 -2
+3 -2
pkgs/os-specific/linux/multipath-tools/default.nix
··· 1 1 { stdenv, fetchurl, lvm2, libaio, gzip, readline, systemd, liburcu }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "multipath-tools-0.6.2"; 4 + name = "multipath-tools-${version}"; 5 + version = "0.6.2"; 5 6 6 7 src = fetchurl { 7 8 name = "${name}.tar.gz"; 8 - url = "https://git.opensvc.com/"; 9 + url = "https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=${version};sf=tgz"; 9 10 sha256 = "159hxvbk9kh1qay9x04w0gsqzg0hkl5yghfc1wi9kv2n5pcwbkpm"; 10 11 }; 11 12