tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
editorconfig-core-c: 0.12.5 -> 0.12.7
Keto
2 years ago
e2cd8a7a
f945939f
+12
-15
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
editorconfig-core-c
default.nix
+12
-15
pkgs/development/tools/misc/editorconfig-core-c/default.nix
···
1
-
{ lib, stdenv, fetchpatch, fetchFromGitHub, cmake, pcre2, doxygen }:
0
0
0
0
0
0
2
3
-
stdenv.mkDerivation rec {
4
pname = "editorconfig-core-c";
5
-
version = "0.12.5";
6
7
outputs = [ "out" "dev" ];
8
9
src = fetchFromGitHub {
10
owner = "editorconfig";
11
repo = "editorconfig-core-c";
12
-
rev = "v${version}";
13
-
sha256 = "sha256-4p8bomeXtA+zJ3IvWW0UZixdMnjYWYu7yeA6JUwwRb8=";
14
fetchSubmodules = true;
15
};
16
-
17
-
patches = [
18
-
# Fox broken paths in pkg-config.
19
-
# https://github.com/editorconfig/editorconfig-core-c/pull/81
20
-
(fetchpatch {
21
-
url = "https://github.com/editorconfig/editorconfig-core-c/commit/e0ead79d3bb4179fe9bccd3e5598ed47cc0863a3.patch";
22
-
sha256 = "t/DiPVyyYoMwFpNG6sD+rLWHheFCbMaILXyey6inGdc=";
23
-
})
24
-
];
25
26
nativeBuildInputs = [
27
cmake
···
53
platforms = platforms.unix;
54
mainProgram = "editorconfig";
55
};
56
-
}
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchFromGitHub
4
+
, cmake
5
+
, pcre2
6
+
, doxygen
7
+
}:
8
9
+
stdenv.mkDerivation (finalAttrs: {
10
pname = "editorconfig-core-c";
11
+
version = "0.12.7";
12
13
outputs = [ "out" "dev" ];
14
15
src = fetchFromGitHub {
16
owner = "editorconfig";
17
repo = "editorconfig-core-c";
18
+
rev = "v${finalAttrs.version}";
19
+
hash = "sha256-uKukgQPKIx+zJPf08MTYEtoBiWeVcQmZnjWl4Zk9xaY=";
20
fetchSubmodules = true;
21
};
0
0
0
0
0
0
0
0
0
22
23
nativeBuildInputs = [
24
cmake
···
50
platforms = platforms.unix;
51
mainProgram = "editorconfig";
52
};
53
+
})