mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
25 lines
631 B
Nix
25 lines
631 B
Nix
{ stdenv, fetchFromGitHub, cmake, ninja, opencascade }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smesh";
|
|
version = "6.7.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tpaviot";
|
|
repo = "smesh";
|
|
rev = version;
|
|
sha256 = "1b07j3bw3lnxk8dk3x1kkl2mbsmfwi98si84054038lflaaijzi0";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
|
buildInputs = [ opencascade ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Extension to OCE providing advanced meshing features";
|
|
homepage = "https://github.com/tpaviot/smesh";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ gebner ];
|
|
};
|
|
}
|