Skip to content

Commit d138fb8

Browse files
committed
rang: Replace with bundled version
1 parent 4e1ded2 commit d138fb8

File tree

9 files changed

+504
-53
lines changed

9 files changed

+504
-53
lines changed

nix/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
fmtlib = callPackage ./pkgs/fmtlib/fmt.nix { };
1919
# Package for testing
2020
yamlCpp = callPackage ./pkgs/yaml-cpp/yaml-cpp.nix { };
21-
# Package for testing
22-
rang = callPackage ./pkgs/rang/rang.nix { };
2321
# Program expression
2422
yodaStruct = callPackage ./yodaStruct.nix { };
2523
}; in

nix/pkgs/rang.nix

Lines changed: 0 additions & 26 deletions
This file was deleted.

nix/pkgs/rang/rang.nix

Lines changed: 0 additions & 12 deletions
This file was deleted.

nix/pkgs/rang/rang.src.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

nix/yodaStruct.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@
1212
, lib
1313
, boost
1414
, gsl
15-
, rang
1615
, cmake }:
1716
clangStdenv.mkDerivation {
1817
name = "yodaStruct";
1918
src = lib.cleanSource ../.;
2019
enableParallelBuilding=true;
2120
nativeBuildInputs = [
2221
fmtlib
23-
rang
2422
cmake
2523
lua
2624
luaPackages.luafilesystem

src/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ find_package(
3232
"GSL" REQUIRED
3333
"Boost" REQUIRED COMPONENTS system filesystem
3434
"yaml-cpp"
35-
"fmt"
36-
"rang")
35+
"fmt")
3736

3837
link_directories(${Boost_LIBRARY_DIRS})
3938
# Link everything

0 commit comments

Comments
 (0)