summary refs log tree commit diff
path: root/pkgs/development/libraries/ode/default.nix
blob: e7368e4f60bfcab56644c65c8327d354cdf0e9d0 (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.11.1" args; 
  buildInputs = with args; [
    
  ];
in
rec {
  src = fetchurl {
    url = "mirror://sourceforge/opende/ode-${version}.tar.bz2";
    sha256 = "1883gbsnn7zldrpwfdh6kwj20g627n5bspz3yb2z6lrxdal88y47";
  };

  inherit buildInputs;
  configureFlags = [];

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