maloader: switch to fetchFromGitHub

This commit is contained in:
Sandro Jäckel
2021-11-13 02:50:57 +01:00
parent ea25bea65a
commit cd84d7fd57
+10 -7
View File
@@ -1,10 +1,12 @@
{ lib, stdenv, fetchgit, opencflite, clang, libcxx }:
{ lib, stdenv, fetchFromGitHub, opencflite, clang, libcxx }:
stdenv.mkDerivation {
name = "maloader-0git";
pname = "maloader";
version = "unstable-2014-02-25";
src = fetchgit {
url = "git://github.com/shinh/maloader.git";
src = fetchFromGitHub {
owner = "shinh";
repo = "maloader";
rev = "5f220393e0b7b9ad0cf1aba0e89df2b42a1f0442";
sha256 = "0dd1pn07x1y8pyn5wz8qcl1c1xwghyya4d060m3y9vx5dhv9xmzw";
};
@@ -28,11 +30,12 @@ stdenv.mkDerivation {
done
'';
meta = {
meta = with lib; {
description = "Mach-O loader for Linux";
homepage = "https://github.com/shinh/maloader";
license = lib.licenses.bsd2;
platforms = lib.platforms.linux;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
broken = true; # 2018-09-08, no succesful build since 2017-08-21
};
}