Merge pull request #163423 from Stunkymonkey/editorconfig-core-c-fetchFromGitHub

This commit is contained in:
Sandro 2022-03-09 15:57:38 +01:00 committed by GitHub
commit bf8d8cde01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,14 @@
{ lib, stdenv, fetchgit, cmake, pcre, doxygen }: { lib, stdenv, fetchFromGitHub, cmake, pcre, doxygen }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "editorconfig-core-c"; pname = "editorconfig-core-c";
version = "0.12.1"; version = "0.12.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/editorconfig/editorconfig-core-c.git"; owner = "editorconfig";
repo = "editorconfig-core-c";
rev = "v${version}"; rev = "v${version}";
sha256 = "0awpb63ci85kal3pnlj2b54bay8igj1rbc13d8gqkvidlb51nnx4"; sha256 = "sha256-pFsbyqIt7okfaiOwlYN8EXm1SFlCUnsHVbOgyIZZlys=";
fetchSubmodules = true; fetchSubmodules = true;
}; };