tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
c3d: init at 1.1.0
Ben Darwin
9 years ago
7baad2e4
12ca09d1
+26
2 changed files
expand all
collapse all
unified
split
pkgs
applications
graphics
c3d
default.nix
top-level
all-packages.nix
+24
pkgs/applications/graphics/c3d/default.nix
···
1
1
+
{ stdenv, fetchgit, cmake, itk }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
_name = "c3d";
5
5
+
_version = "1.1.0";
6
6
+
name = "${_name}-${_version}";
7
7
+
8
8
+
src = fetchgit {
9
9
+
url = "https://git.code.sf.net/p/c3d/git";
10
10
+
rev = "3453f6133f0df831dcbb0d0cfbd8b26e121eb153";
11
11
+
sha256 = "1xgbk20w22jwvf7pa0n4lcbyx35fq56zzlslj0nvcclh6vx0b4z8";
12
12
+
};
13
13
+
14
14
+
nativeBuildInputs = [ cmake ];
15
15
+
buildInputs = [ itk ];
16
16
+
17
17
+
meta = with stdenv.lib; {
18
18
+
homepage = http://www.itksnap.org/c3d;
19
19
+
description = "Medical imaging processing tool";
20
20
+
maintainers = with maintainers; [ bcdarwin ];
21
21
+
platforms = platforms.unix;
22
22
+
license = licenses.gpl2;
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
697
697
698
698
burpsuite = callPackage ../tools/networking/burpsuite {};
699
699
700
700
+
c3d = callPackage ../applications/graphics/c3d {};
701
701
+
700
702
cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: {
701
703
isLibrary = false;
702
704
enableSharedExecutables = false;