mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
commit
68cf4d1dfc
24
pkgs/applications/graphics/c3d/default.nix
Normal file
24
pkgs/applications/graphics/c3d/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchgit, cmake, itk }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
_name = "c3d";
|
||||
_version = "1.1.0";
|
||||
name = "${_name}-${_version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.code.sf.net/p/c3d/git";
|
||||
rev = "3453f6133f0df831dcbb0d0cfbd8b26e121eb153";
|
||||
sha256 = "1xgbk20w22jwvf7pa0n4lcbyx35fq56zzlslj0nvcclh6vx0b4z8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ itk ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.itksnap.org/c3d;
|
||||
description = "Medical imaging processing tool";
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
@ -703,6 +703,8 @@ with pkgs;
|
||||
|
||||
burpsuite = callPackage ../tools/networking/burpsuite {};
|
||||
|
||||
c3d = callPackage ../applications/graphics/c3d {};
|
||||
|
||||
cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: {
|
||||
isLibrary = false;
|
||||
enableSharedExecutables = false;
|
||||
|
Loading…
Reference in New Issue
Block a user