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
36
pkgs/os-specific/linux/cramfsprogs/default.nix
Normal file
36
pkgs/os-specific/linux/cramfsprogs/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cramfsprogs";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://debian/pool/main/c/cramfs/cramfs_${version}.orig.tar.gz";
|
||||
sha256 = "0s13sabykbkbp0pcw8clxddwzxckyq7ywm2ial343ip7qjiaqg0k";
|
||||
};
|
||||
|
||||
# CramFs is unmaintained upstream: https://tracker.debian.org/pkg/cramfs.
|
||||
# So patch the "missing include" bug ourselves.
|
||||
patches = [ ./include-sysmacros.patch ];
|
||||
|
||||
makeFlags = [
|
||||
"CC=${stdenv.cc.targetPrefix}cc"
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
install --target $out/bin -D cramfsck mkcramfs
|
||||
'';
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools to create, check, and extract content of CramFs images";
|
||||
homepage = "https://packages.debian.org/jessie/cramfsprogs";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ pamplemousse ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
12
pkgs/os-specific/linux/cramfsprogs/include-sysmacros.patch
Normal file
12
pkgs/os-specific/linux/cramfsprogs/include-sysmacros.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff --git a/mkcramfs.c b/mkcramfs.c
|
||||
index a2ef018959d..bec83c112d1 100644
|
||||
--- a/mkcramfs.c
|
||||
+++ b/mkcramfs.c
|
||||
@@ -22,6 +22,7 @@
|
||||
* If you change the disk format of cramfs, please update fs/cramfs/README.
|
||||
*/
|
||||
|
||||
+#include <sys/sysmacros.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/stat.h>
|
||||
Loading…
Add table
Add a link
Reference in a new issue