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
475 B
Nix
Raw Normal View History

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