lol

ignition robotics libs: init; .math: init at 2.3.0

+31
+23
pkgs/development/libraries/ignition-math/default.nix
··· 1 + { stdenv, fetchurl, cmake }: 2 + 3 + let 4 + version = "2.3.0"; 5 + in 6 + stdenv.mkDerivation rec { 7 + name = "ign-math2-${version}"; 8 + 9 + src = fetchurl { 10 + url = "http://gazebosim.org/distributions/ign-math/releases/ignition-math2-${version}.tar.bz2"; 11 + sha256 = "1a2jgq6allcxg62y0r61iv4hgxkfr1whpsxy75hg7k85s7da8dpl"; 12 + }; 13 + 14 + buildInputs = [ cmake ]; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = http://ignitionrobotics.org/libraries/math; 18 + description = "Math library by Ingition Robotics, created for the Gazebo project"; 19 + license = licenses.asl20; 20 + maintainers = with maintainers; [ pxc ]; 21 + platforms = platforms.all; 22 + }; 23 + }
+8
pkgs/top-level/all-packages.nix
··· 1906 1906 1907 1907 ifuse = callPackage ../tools/filesystems/ifuse/default.nix { }; 1908 1908 1909 + ignition = recurseIntoAttrs { 1910 + 1911 + math = callPackage ../development/libraries/ignition-math { }; 1912 + 1913 + math2 = ignition.math; 1914 + 1915 + }; 1916 + 1909 1917 ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix { 1910 1918 inherit (haskellPackages) ihaskell ghcWithPackages; 1911 1919