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
22
pkgs/development/tools/misc/prelink/default.nix
Normal file
22
pkgs/development/tools/misc/prelink/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ lib, stdenv, fetchurl, libelf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "prelink";
|
||||
version = "20130503";
|
||||
|
||||
buildInputs = [
|
||||
libelf stdenv.cc.libc (lib.getOutput "static" stdenv.cc.libc)
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://people.redhat.com/jakub/prelink/prelink-${version}.tar.bz2";
|
||||
sha256 = "1w20f6ilqrz8ca51qhrn1n13h7q1r34k09g33d6l2vwvbrhcffb3";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://people.redhat.com/jakub/prelink/";
|
||||
license = "GPL";
|
||||
description = "ELF prelinking utility to speed up dynamic linking";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue