tweeny: init at 3.1.0
This commit is contained in:
parent
875cdcff4a
commit
5c39300463
30
pkgs/development/libraries/tweeny/default.nix
Normal file
30
pkgs/development/libraries/tweeny/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "tweeny";
|
||||||
|
version = "3.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mobius3";
|
||||||
|
repo = "tweeny";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0qvby57g9a2m4afd1mgard3k7nm4ynbvali7nzm1qn3ygdmqid7n";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -7438,6 +7438,8 @@ in
|
|||||||
|
|
||||||
tweet-hs = haskell.lib.justStaticExecutables haskellPackages.tweet-hs;
|
tweet-hs = haskell.lib.justStaticExecutables haskellPackages.tweet-hs;
|
||||||
|
|
||||||
|
tweeny = callPackage ../development/libraries/tweeny { };
|
||||||
|
|
||||||
qfsm = callPackage ../applications/science/electronics/qfsm { };
|
qfsm = callPackage ../applications/science/electronics/qfsm { };
|
||||||
|
|
||||||
tkgate = callPackage ../applications/science/electronics/tkgate/1.x.nix { };
|
tkgate = callPackage ../applications/science/electronics/tkgate/1.x.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user