mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 14:39:23 +03:00
c3d: init at 1.1.0
This commit is contained in:
parent
12ca09d14e
commit
7baad2e4be
2 changed files with 26 additions and 0 deletions
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -697,6 +697,8 @@ with pkgs;
|
||||||
|
|
||||||
burpsuite = callPackage ../tools/networking/burpsuite {};
|
burpsuite = callPackage ../tools/networking/burpsuite {};
|
||||||
|
|
||||||
|
c3d = callPackage ../applications/graphics/c3d {};
|
||||||
|
|
||||||
cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: {
|
cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: {
|
||||||
isLibrary = false;
|
isLibrary = false;
|
||||||
enableSharedExecutables = false;
|
enableSharedExecutables = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue