tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
darwin.rewrite-tbd: only build on darwin
Lein Matsumaru
4 years ago
ae4666c4
8d197bff
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
darwin
rewrite-tbd
default.nix
+8
-1
pkgs/os-specific/darwin/rewrite-tbd/default.nix
···
1
-
{ stdenv, fetchFromGitHub, cmake, pkg-config, libyaml }:
2
3
stdenv.mkDerivation {
4
pname = "rewrite-tbd";
···
13
14
nativeBuildInputs = [ cmake pkg-config ];
15
buildInputs = [ libyaml ];
0
0
0
0
0
0
0
16
}
···
1
+
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, libyaml }:
2
3
stdenv.mkDerivation {
4
pname = "rewrite-tbd";
···
13
14
nativeBuildInputs = [ cmake pkg-config ];
15
buildInputs = [ libyaml ];
16
+
17
+
meta = with lib; {
18
+
homepage = "https://github.com/thefloweringash/rewrite-tbd/";
19
+
description = "Rewrite filepath in .tbd to Nix applicable format";
20
+
platforms = platforms.darwin;
21
+
license = licenses.mit;
22
+
};
23
}