mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
a8e63e4f74
This is only the easy cases -- some fetchgit uses that point to Gitiles instances are in generated code, where the generating code would have to know in advance if it was fetching from Gitiles or not. I don't think this is worth it.
8 lines
269 B
Nix
8 lines
269 B
Nix
{ fetchFromGitiles }:
|
|
|
|
fetchFromGitiles {
|
|
name = "chromium-xorg-conf";
|
|
url = "https://chromium.googlesource.com/chromiumos/platform/xorg-conf";
|
|
rev = "26fb9d57e195c7e467616b35b17e2b5d279c1514";
|
|
sha256 = "0643y3l3hjk4mv4lm3h9z56h990q6k11hcr10lcqppgsii0d3zcf";
|
|
}
|