about summary refs log tree commit diff
path: root/pkgs/by-name/in
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-03-11 16:50:57 +0100
committerGitHub <noreply@github.com>2024-03-11 16:50:57 +0100
commit54c52cb2762de4f2c204657c8903b81d82be5f60 (patch)
tree27ccdca36bad9aa9774d0866e8d287eb93adab08 /pkgs/by-name/in
parent9336998b519fa62fa13ec0e2c770ff0178d6c3d6 (diff)
parent91b3db13093b1aecdba07041eb44b7103c235d94 (diff)
Merge pull request #294334 from ShamrockLee/sourceroot-fix
treewide: fix hard-coded `sourceRoot` prefix for `fetchgit`-based `src`
Diffstat (limited to 'pkgs/by-name/in')
-rw-r--r--pkgs/by-name/in/intiface-central/package.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/in/intiface-central/package.nix b/pkgs/by-name/in/intiface-central/package.nix
index 889ef7a874d01..180d4feefc669 100644
--- a/pkgs/by-name/in/intiface-central/package.nix
+++ b/pkgs/by-name/in/intiface-central/package.nix
@@ -27,7 +27,7 @@ flutter.buildFlutterApplication rec {
   cargoDeps = rustPlatform.fetchCargoTarball {
     name = "${pname}-${version}-cargo-deps";
     inherit src;
-    sourceRoot = "source/intiface-engine-flutter-bridge";
+    sourceRoot = "${src.name}/intiface-engine-flutter-bridge";
     hash = "sha256-0sCHa3rMaLYaUG3E3fmsLi0dSdb9vGyv7qNR3JQkXuU=";
   };
   cargoRoot = "intiface-engine-flutter-bridge";