My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/ode/default.nix

18 lines
475 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "ode";
version = "0.16.2";
src = fetchurl {
url = "https://bitbucket.org/odedevs/${pname}/downloads/${pname}-${version}.tar.gz";
sha256 = "08hgh4gqdk77jcw8b7gq2mwsfg4a5v5y0j7g42bxiqhmn3ffnsmj";
};
meta = with lib; {
description = "Open Dynamics Engine";
homepage = "https://www.ode.org";
platforms = platforms.linux;
license = with licenses; [ bsd3 lgpl21 lgpl3 zlib ];
};
}