Merge pull request #163423 from Stunkymonkey/editorconfig-core-c-fetchFromGitHub
This commit is contained in:
commit
bf8d8cde01
1 changed files with 5 additions and 4 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue