maloader: use fetchFromGitHub

This commit is contained in:
Sandro Jäckel 2021-11-17 01:26:45 +01:00 committed by Sandro Jäckel
parent 58948dcc4e
commit 24e553ceab
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -1,11 +1,12 @@
{ lib, stdenv, fetchgit, opencflite, clang, libcxx }:
{ lib, stdenv, fetchFromGitHub, opencflite, clang, libcxx }:
stdenv.mkDerivation {
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";
};