tracefilesim: replace fetchgit with fetchFromGitHub

This commit is contained in:
Felix Buehler 2021-06-15 12:41:47 +02:00
parent 936168eee5
commit ad3dacc432

View file

@ -1,11 +1,12 @@
{ lib, stdenv, fetchgit }:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
name = "tracefilesim-2015-11-07";
src = fetchgit {
url = "https://github.com/GarCoSim/TraceFileSim.git";
src = fetchFromGitHub {
owner = "GarCoSim";
repo = "TraceFileSim";
rev = "368aa6b1d6560e7ecbd16fca47000c8f528f3da2";
sha256 = "156m92k38ap4bzidbr8dzl065rni8lrib71ih88myk9z5y1x5nxm";
};