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
49
pkgs/tools/misc/txr/default.nix
Normal file
49
pkgs/tools/misc/txr/default.nix
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
{ lib, stdenv, fetchurl, libffi, coreutils }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "txr";
|
||||
version = "275";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
|
||||
sha256 = "sha256-HmykTyh5F49CBa1w7o/HV6Q5Lsx1Qkxe0JBHQdGxVB4=";
|
||||
};
|
||||
|
||||
buildInputs = [ libffi ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
checkTarget = "tests";
|
||||
|
||||
postPatch = ''
|
||||
# Fixup references to /usr/bin in tests
|
||||
substituteInPlace tests/017/realpath.tl --replace /usr/bin /bin
|
||||
substituteInPlace tests/017/realpath.expected --replace /usr/bin /bin
|
||||
|
||||
substituteInPlace tests/018/process.tl --replace /usr/bin/env ${lib.getBin coreutils}/bin/env
|
||||
'';
|
||||
|
||||
# Remove failing tests -- 018/chmod tries setting sticky bit
|
||||
preCheck = "rm -rf tests/018/chmod*";
|
||||
|
||||
postInstall = ''
|
||||
d=$out/share/vim-plugins/txr
|
||||
mkdir -p $d/{syntax,ftdetect}
|
||||
|
||||
cp {tl,txr}.vim $d/syntax/
|
||||
|
||||
cat > $d/ftdetect/txr.vim <<EOF
|
||||
au BufRead,BufNewFile *.txr set filetype=txr | set lisp
|
||||
au BufRead,BufNewFile *.tl,*.tlo set filetype=tl | set lisp
|
||||
EOF
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Programming language for convenient data munging";
|
||||
license = licenses.bsd2;
|
||||
homepage = "http://nongnu.org/txr";
|
||||
maintainers = with lib.maintainers; [ dtzWill ];
|
||||
platforms = platforms.linux; # Darwin fails although it should work AFAIK
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue