summary refs log tree commit diff
path: root/pkgs/development/libraries/ode/default.nix
blob: 2cc240c7ec345c004f9ab71af0d07c95313187d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
args :  
let 
  lib = args.lib;
  fetchurl = args.fetchurl;

  version = lib.attrByPath ["version"] "0.10.1" args; 
  buildInputs = with args; [
    
  ];
in
rec {
  src = fetchurl {
    url = "http://downloads.sourceforge.net/opende/ode-${version}.tar.bz2";
    sha256 = "0bm7kmm7qvrbk40pgaszqr66pjfvnln8vjzdmcdl2h1dxi3b4dln";
  };

  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be specified separately */
  phaseNames = ["doConfigure" "doMakeInstall"];
      
  name = "ode-" + version;
  meta = {
    description = "Open Dynamics Engine";
  };
}