tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ignition robotics libs: init; .math: init at 2.3.0
Patrick Callahan
10 years ago
b682906b
008bcf51
+31
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
ignition-math
default.nix
top-level
all-packages.nix
+23
pkgs/development/libraries/ignition-math/default.nix
···
1
1
+
{ stdenv, fetchurl, cmake }:
2
2
+
3
3
+
let
4
4
+
version = "2.3.0";
5
5
+
in
6
6
+
stdenv.mkDerivation rec {
7
7
+
name = "ign-math2-${version}";
8
8
+
9
9
+
src = fetchurl {
10
10
+
url = "http://gazebosim.org/distributions/ign-math/releases/ignition-math2-${version}.tar.bz2";
11
11
+
sha256 = "1a2jgq6allcxg62y0r61iv4hgxkfr1whpsxy75hg7k85s7da8dpl";
12
12
+
};
13
13
+
14
14
+
buildInputs = [ cmake ];
15
15
+
16
16
+
meta = with stdenv.lib; {
17
17
+
homepage = http://ignitionrobotics.org/libraries/math;
18
18
+
description = "Math library by Ingition Robotics, created for the Gazebo project";
19
19
+
license = licenses.asl20;
20
20
+
maintainers = with maintainers; [ pxc ];
21
21
+
platforms = platforms.all;
22
22
+
};
23
23
+
}
+8
pkgs/top-level/all-packages.nix
···
1906
1906
1907
1907
ifuse = callPackage ../tools/filesystems/ifuse/default.nix { };
1908
1908
1909
1909
+
ignition = recurseIntoAttrs {
1910
1910
+
1911
1911
+
math = callPackage ../development/libraries/ignition-math { };
1912
1912
+
1913
1913
+
math2 = ignition.math;
1914
1914
+
1915
1915
+
};
1916
1916
+
1909
1917
ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix {
1910
1918
inherit (haskellPackages) ihaskell ghcWithPackages;
1911
1919