Skip to content
Snippets Groups Projects
Commit 822f6a64 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

Merge branch 'devel' into pre-commit-ci-update-config

parents 39299e1b 6e93ef9b
No related branches found
No related tags found
No related merge requests found
Pipeline #42235 passed
name: "Nix CI"
on: [pull_request, push]
jobs:
tests:
name: "Nix build on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}-latest"
strategy:
matrix:
os: [ubuntu]
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix --accept-flake-config build -L
- run: nix --accept-flake-config run .#cachix push gepetto $(readlink result)
if: github.repository_owner == 'humanoid-path-planner'
env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
Subproject commit 657b07cb721ecbc383d4e76438eb6ec5c421a332
Subproject commit 2bea127e8113a32f216ae7a7201e36a6e7c56cc2
{
lib,
stdenv,
cmake,
hpp-util,
}:
stdenv.mkDerivation {
pname = "hpp-statistics";
version = "5.0.0";
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./CMakeLists.txt
./doc
./include
./package.xml
./src
./tests
];
};
strictDeps = true;
nativeBuildInputs = [ cmake ];
propagatedBuildInputs = [ hpp-util ];
doCheck = true;
meta = {
description = "Classes for doing statistics";
homepage = "https://github.com/humanoid-path-planner/hpp-statistics";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.nim65s ];
};
}
{
"nodes": {
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1719877454,
"narHash": "sha256-g5N1yyOSsPNiOlFfkuI/wcUjmtah+nxdImJqrSATjOU=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "4e3583423212f9303aa1a6337f8dffb415920e4f",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"hpp-util": {
"inputs": {
"flake-parts": [
"flake-parts"
],
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1719769497,
"narHash": "sha256-cYONa7WTagNZCITtocdII+WcfdzZnvznFUyb7YLodIw=",
"owner": "humanoid-path-planner",
"repo": "hpp-util",
"rev": "8811dcadeec6b1e52b4cd59da39ad2e170f17ad7",
"type": "github"
},
"original": {
"owner": "humanoid-path-planner",
"repo": "hpp-util",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1719674427,
"narHash": "sha256-z2hCpVyfnmYTA5iabf1SW4peFV9itE1JJcXNBKIFkDg=",
"owner": "nim65s",
"repo": "nixpkgs",
"rev": "b81610d293fac26c2ec6a81718a979bc25f8c155",
"type": "github"
},
"original": {
"owner": "nim65s",
"ref": "gepetto",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-parts": "flake-parts",
"hpp-util": "hpp-util",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}
{
description = "Classes for doing statistics";
nixConfig = {
extra-substituters = [ "https://gepetto.cachix.org" ];
extra-trusted-public-keys = [ "gepetto.cachix.org-1:toswMl31VewC0jGkN6+gOelO2Yom0SOHzPwJMY2XiDY=" ];
};
inputs = {
nixpkgs.url = "github:nim65s/nixpkgs/gepetto";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
hpp-util = {
url = "github:humanoid-path-planner/hpp-util";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ ];
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
perSystem =
{
self',
system,
pkgs,
...
}:
{
packages = {
inherit (pkgs) cachix;
default = pkgs.callPackage ./. { hpp-util = inputs.hpp-util.packages.${system}.default; };
};
devShells.default = pkgs.mkShell { inputsFrom = [ self'.packages.default ]; };
};
};
}
<?xml version='1.0'?>
<package format='2'>
<name>hpp-statistics</name>
<version>5.0.0</version>
<version>5.1.0</version>
<description>Classes for doing statistics. </description>
<maintainer email='hpp@laas.fr'>Joseph Mirabel</maintainer>
......
......@@ -14,7 +14,7 @@ dependencies = [
description = "Classes for doing statistics."
license = "BSD-2-Clause"
name = "hpp-statistics"
version = "5.0.0"
version = "5.1.0"
[tool.ruff]
extend-exclude = ["cmake"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment