about summary refs log tree commit diff
path: root/pkgs/by-name/mr/mricron/package.nix
blob: d79f59bced84cda2ddb121eabd3f2e936efc2f4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
  atk,
  autoPatchelfHook,
  cairo,
  copyDesktopItems,
  freetype,
  fontconfig,
  lib,
  stdenv,
  fetchurl,
  gtk2,
  glib,
  gdk-pixbuf,
  makeWrapper,
  makeDesktopItem,
  pango,
  unzip,
  xorg,
  zlib,
}:
stdenv.mkDerivation rec {

  pname = "mricron";
  version = "1.0.20190902";
  src = fetchurl {
    url = "https://github.com/neurolabusc/MRIcron/releases/download/v${version}/MRIcron_linux.zip";
    hash = "sha256-C155u9dvYEyWRfTv3KNQFI6aMWIAjgvdSIqMuYVIOQA=";
  };

  nativeBuildInputs = [
    autoPatchelfHook
    copyDesktopItems
    makeWrapper
    unzip
  ];

  buildInputs = [
    atk
    cairo
    freetype
    fontconfig
    gtk2
    glib
    gdk-pixbuf
    pango
    xorg.libX11
    zlib
  ];

  installPhase = ''
    mkdir -p $out/bin
    mkdir -p $out/share/icons/hicolor/256x256/apps

    install -Dm777 ./MRIcron $out/bin/mricron
    install -Dm444 -t $out/share/icons/hicolor/scalable/apps/ ./Resources/mricron.svg
  '';

  desktopItems = [
    (makeDesktopItem {
      type = "Application";
      name = "mricron";
      desktopName = "MRIcron";
      comment = "Application to display NIfTI medical imaging data";
      exec = "mricron %U";
      icon = "mricron";
      categories = [
        "Graphics"
        "MedicalSoftware"
        "Science"
      ];
      terminal = false;
      keywords = [
        "medical"
        "imaging"
        "nifti"
      ];
    })
  ];

  meta = {
    description = "Application to display NIfTI medical imaging data";
    homepage = "https://people.cas.sc.edu/rorden/mricron/index.HTML";
    license = lib.licenses.bsd1;
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ adriangl ];
    mainProgram = "mricron";
  };
}