nixpkgs/pkgs/development/libraries/ode/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
474 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-06-16 18:51:57 +00:00
stdenv.mkDerivation rec {
pname = "ode";
2023-01-14 01:53:57 +00:00
version = "0.16.3";
src = fetchurl {
2021-07-19 15:17:02 +00:00
url = "https://bitbucket.org/odedevs/${pname}/downloads/${pname}-${version}.tar.gz";
2023-01-14 01:53:57 +00:00
sha256 = "sha256-x0Hb9Jv8Rozilkgk5bw/kG6pVrGuNZTFDTUcOD8DxBM=";
};
meta = with lib; {
description = "Open Dynamics Engine";
2021-07-19 15:17:02 +00:00
homepage = "https://www.ode.org";
2018-10-25 19:50:01 +00:00
platforms = platforms.linux;
license = with licenses; [ bsd3 lgpl21 lgpl3 zlib ];
};
}