Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Switch to fetchFromGithub #242

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
result*
*.ignore.*
*.ignore
14 changes: 9 additions & 5 deletions distros/foxy/ackermann-msgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ackermann-msgs";
version = "2.0.2-r1";

src = fetchurl {
url = "https://github.com/ros-drivers-gbp/ackermann_msgs-release/archive/release/foxy/ackermann_msgs/2.0.2-1.tar.gz";
name = "2.0.2-1.tar.gz";
sha256 = "8e8d92f2ef625abec378de4425b4da8421a28287feb6727610104e1e8902501f";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros-drivers-gbp";
repo = "ackermann_msgs-release";
rev = "release/foxy/ackermann_msgs/2.0.2-1";
sha256 = "sha256-zn0jbHQ6PrAlpzAwpr3Tu01dOE8TVcs0XYlTXL0x8wg=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/action-msgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-action-msgs";
version = "1.0.0-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/foxy/action_msgs/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "98f6d6a6cdce04e07d239dc50233ec4d6ab460c6caa4eb297d1138416cef1d97";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "rcl_interfaces-release";
rev = "release/foxy/action_msgs/1.0.0-1";
sha256 = "sha256-y7F7Ih+C6Duj1u2LIiV7R4jvmCaJGg8JAOugw38YX4I=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/action-tutorials-cpp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-action-tutorials-cpp";
version = "0.9.4-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/foxy/action_tutorials_cpp/0.9.4-1.tar.gz";
name = "0.9.4-1.tar.gz";
sha256 = "ece75ba361659c1f67b03a5066848efbc3e512aa17bc368bd1698b0b0d6c463f";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "demos-release";
rev = "release/foxy/action_tutorials_cpp/0.9.4-1";
sha256 = "sha256-D3Qk0Db/q+4v9SDYQjbzfgTHfFTa5BHLLWaEFYeFVuw=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/action-tutorials-interfaces/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-action-tutorials-interfaces";
version = "0.9.4-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/foxy/action_tutorials_interfaces/0.9.4-1.tar.gz";
name = "0.9.4-1.tar.gz";
sha256 = "2b1f8ba25a5b36b97825e1f701d2018bafb59e1d5377a550498fc8afb6696e41";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "demos-release";
rev = "release/foxy/action_tutorials_interfaces/0.9.4-1";
sha256 = "sha256-xONDl4Gr6frXde8EwPhfWtRBIrVU52ZNUc5vwZQafJs=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/action-tutorials-py/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-action-tutorials-py";
version = "0.9.4-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/foxy/action_tutorials_py/0.9.4-1.tar.gz";
name = "0.9.4-1.tar.gz";
sha256 = "b093ae3e3e88cfc08ad4d25476c9a29f37923bc6e4cceaabb43ccf46d3a7eba1";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "demos-release";
rev = "release/foxy/action_tutorials_py/0.9.4-1";
sha256 = "sha256-6WQTSKJ40RJOs+Gh+dpZeJhEJcnFjK4aFZrp1JaFP/4=";
};

buildType = "ament_python";
checkInputs = [ ament-lint-auto ament-lint-common ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/actionlib-msgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-actionlib-msgs";
version = "2.0.5-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/foxy/actionlib_msgs/2.0.5-1.tar.gz";
name = "2.0.5-1.tar.gz";
sha256 = "33fb6df04e2ca0b411c62a1fb6d51a9b1983a93fad02234ccd2368267341f148";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "common_interfaces-release";
rev = "release/foxy/actionlib_msgs/2.0.5-1";
sha256 = "sha256-rZVlG7U3YAyT+It4PGrm/X+2/lS844XOJvdxaJY++54=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-clang-format/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-clang-format";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_clang_format/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "308eb252a60b39bcaadfe46035492c1ba8a06d86b58763625c30d4c3654040d8";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_clang_format/0.9.7-1";
sha256 = "sha256-tJnFt40uq5pKOJwrLKsfl+X+yA8NA3dqfn19pp1ffdo=";
};

buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-clang-tidy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-clang-tidy";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_clang_tidy/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "8752cd7f34f1a8a9984f96669ff1382f85603e54d99415a271c3bd6202fa40eb";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_clang_tidy/0.9.7-1";
sha256 = "sha256-2LUEoZGhFFitbP3DDKfANE7nfeOVH8m4whXCDGUQeWc=";
};

buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-auto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-auto";
version = "0.9.11-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/foxy/ament_cmake_auto/0.9.11-1.tar.gz";
name = "0.9.11-1.tar.gz";
sha256 = "5c24986ae6c12ca27b06f5b079df2000209279041b1fba8c3ad0eada23c38806";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_cmake-release";
rev = "release/foxy/ament_cmake_auto/0.9.11-1";
sha256 = "sha256-8Twu6yIs6Jl8yKT/r+x9nIoWEIRG9y2ApDKLYo0gBhE=";
};

buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-catch2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-catch2";
version = "1.2.0-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake_catch2-release/archive/release/foxy/ament_cmake_catch2/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "4c435817be2c972b6f062c6dc0cb0bbaeca09abb8c6cd37b185d9153df544e74";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_cmake_catch2-release";
rev = "release/foxy/ament_cmake_catch2/1.2.0-1";
sha256 = "sha256-tO+yhq78V4z0Tiq3cso46p8Nv2iIiy1GtgvMFrerMPI=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-clang-format/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-clang-format";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cmake_clang_format/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "258cb55a65b3bb6dd38695836e32a126a6d3c4556f4cd2ea1bacd94e9a493c64";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_cmake_clang_format/0.9.7-1";
sha256 = "sha256-0Gus/RG4eeU1BUMXfjC29NxpoCawl3bGKBAHYPCFkRE=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-clang-tidy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-clang-tidy";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cmake_clang_tidy/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "54a27d55f677cc1e618510d2565eb6879670ad6369b409262be4b594f02ecbc5";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_cmake_clang_tidy/0.9.7-1";
sha256 = "sha256-bMm8lnSsRsoiWnYO/IhZDQaF2CYNJpN4UEcFDrOYkek=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-copyright/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-copyright";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cmake_copyright/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "be736f76073e12b9f5c9b958db28874a78fb3c7afc982d495c6918640236aa2b";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_cmake_copyright/0.9.7-1";
sha256 = "sha256-ob8y+X4guv9TYd8dNKfzPfcjjDWtWDzvHL0uoqtWE64=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-core";
version = "0.9.11-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/foxy/ament_cmake_core/0.9.11-1.tar.gz";
name = "0.9.11-1.tar.gz";
sha256 = "1c72f1240fb41ca6b6a801d2c8408b6b5aa20f529375d7c5acee8d424fa68850";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_cmake-release";
rev = "release/foxy/ament_cmake_core/0.9.11-1";
sha256 = "sha256-EWJCwOffufno7DafGyMdbzCXa2rlJ1JxAN/SesDDI0M=";
};

buildType = "ament_cmake";
propagatedBuildInputs = [ ament-package cmake python3Packages.catkin-pkg ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-cppcheck/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-cppcheck";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cmake_cppcheck/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "c374f88631647cb7f38f98296bd7f69554c17310132934204a87454997b96ec3";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_cmake_cppcheck/0.9.7-1";
sha256 = "sha256-4c+9zYccuJN0b6CjBqzjn3b1nFLb4OIatcA8C+k8/2A=";
};

buildType = "ament_cmake";
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-cpplint/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-cpplint";
version = "0.9.7-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cmake_cpplint/0.9.7-1.tar.gz";
name = "0.9.7-1.tar.gz";
sha256 = "a1e0378d2ddf4b6e8ba885161d071a79788f6b8c897bf6f1ac4b52c4a4cff045";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_lint-release";
rev = "release/foxy/ament_cmake_cpplint/0.9.7-1";
sha256 = "sha256-mVjppVuxi2AVvQK2H5Q7OKMzFI+jObn/AIsNMDvhYkc=";
};

buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-export-definitions/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-export-definitions";
version = "0.9.11-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/foxy/ament_cmake_export_definitions/0.9.11-1.tar.gz";
name = "0.9.11-1.tar.gz";
sha256 = "54d5495db85f1f73fda6ef57ca20c6588834d203c2eae1c583ca725a118b6186";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_cmake-release";
rev = "release/foxy/ament_cmake_export_definitions/0.9.11-1";
sha256 = "sha256-uljsvfEhLCkNctbAl/K21+rp5sOjdaXwUzB4vAMl5y8=";
};

buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake-core ];
Expand Down
14 changes: 9 additions & 5 deletions distros/foxy/ament-cmake-export-dependencies/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ buildRosPackage {
pname = "ros-foxy-ament-cmake-export-dependencies";
version = "0.9.11-r1";

src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/foxy/ament_cmake_export_dependencies/0.9.11-1.tar.gz";
name = "0.9.11-1.tar.gz";
sha256 = "ef301d14628c07235f3f415d2386d4f4d214d027080f2943cab4bacd3a525652";
};
src = let
fetchFromGithub = (builtins.import (builtins.fetchTarball ({ url = "https://github.com/NixOS/nixpkgs/archive/aa0e8072a57e879073cee969a780e586dbe57997.tar.gz"; })) ({})).fetchFromGitHub;
in
fetchFromGithub {
owner = "ros2-gbp";
repo = "ament_cmake-release";
rev = "release/foxy/ament_cmake_export_dependencies/0.9.11-1";
sha256 = "sha256-1IP0Zn8Uvl8PDOxAPkKaUz40KyVmABDDYAfmdxFtzzM=";
};

buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake-core ament-cmake-libraries ];
Expand Down
Loading