about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-06-15 12:41:47 +0200
committerFelix Buehler <account@buehler.rocks>2021-06-30 09:53:51 +0200
commitad3dacc432306ccd86141ca4a3efd817ae301caf (patch)
tree0b0b3928de28380fbe5d46f6c7d1f03239bdbb27
parent936168eee567d5dcc73b4d3442fbc7a5c5293803 (diff)
tracefilesim: replace fetchgit with fetchFromGitHub
-rw-r--r--pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix b/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix
index 3f97485cbfa4b..6fc19b3ae246a 100644
--- a/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix
+++ b/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix
@@ -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";
   };