aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/tweeny/default.nix
blob: f2de470288ded3767c58df1baacab9afdacef849 (plain)
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
28
29
30
{ stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
  pname = "tweeny";
  version = "3.1.1";

  src = fetchFromGitHub {
    owner = "mobius3";
    repo = "tweeny";
    rev = "v${version}";
    sha256 = "0zk7p21i54hfz0l50617i3gxhxh0n9yy86n2fxg8m26cvf4yhsj7";
  };

  nativeBuildInputs = [
    cmake
  ];

  doCheck = true;

  meta = with stdenv.lib; {
    description = "A modern C++ tweening library";
    license = licenses.mit;
    homepage = "http://mobius3.github.io/tweeny";
    maintainers = [ maintainers.doronbehar ];
    platforms = with platforms; darwin ++ linux;
  };
}