uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
37
pkgs/applications/science/biology/inormalize/default.nix
Normal file
37
pkgs/applications/science/biology/inormalize/default.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, makeWrapper,
|
||||
perlPackages,
|
||||
libminc, EBTKS }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "inormalize";
|
||||
name = "${pname}-2014-10-21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "BIC-MNI";
|
||||
repo = pname;
|
||||
rev = "79cea9cdfe7b99abfd40afda89ab2253b596ad2f";
|
||||
sha256 = "1ahqv5q0ljvji99a5q8azjkdf6bgp6nr8lwivkqwqs3jm0k5clq7";
|
||||
};
|
||||
|
||||
patches = [ ./lgmask-interp.patch ./nu_correct_norm-interp.patch ];
|
||||
|
||||
nativeBuildInputs = [ cmake makeWrapper ];
|
||||
buildInputs = [ libminc EBTKS ];
|
||||
propagatedBuildInputs = with perlPackages; [ perl GetoptTabular MNI-Perllib ];
|
||||
|
||||
cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/cmake" "-DEBTKS_DIR=${EBTKS}/lib/" ];
|
||||
|
||||
postFixup = ''
|
||||
for p in $out/bin/*; do
|
||||
wrapProgram $p --prefix PERL5LIB : $PERL5LIB
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/BIC-MNI/${pname}";
|
||||
description = "Program to normalize intensity of MINC files";
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.free;
|
||||
};
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
diff --git a/lgmask.in b/lgmask.in
|
||||
index 17dbe4d..2195d91 100644
|
||||
--- a/lgmask.in
|
||||
+++ b/lgmask.in
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! @PERL@
|
||||
+#! /usr/bin/env perl
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
#@COPYRIGHT :
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
diff --git a/nu_correct_norm.in b/nu_correct_norm.in
|
||||
index 1dc84ac..1bc6235 100644
|
||||
--- a/nu_correct_norm.in
|
||||
+++ b/nu_correct_norm.in
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! @PERL@
|
||||
+#! /usr/bin/perl
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
#@COPYRIGHT :
|
||||
Loading…
Add table
Add a link
Reference in a new issue