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
31
pkgs/os-specific/linux/cpufrequtils/default.nix
Normal file
31
pkgs/os-specific/linux/cpufrequtils/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchurl, libtool, gettext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cpufrequtils";
|
||||
version = "008";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-${version}.tar.gz";
|
||||
sha256 = "127i38d4w1hv2dzdy756gmbhq25q3k34nqb2s0xlhsfhhdqs0lq0";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# I am not 100% sure that this is ok, but it breaks repeatable builds.
|
||||
./remove-pot-creation-date.patch
|
||||
];
|
||||
|
||||
patchPhase = ''
|
||||
sed -e "s@= /usr/bin/@= @g" \
|
||||
-e "s@/usr/@$out/@" \
|
||||
-i Makefile
|
||||
'';
|
||||
|
||||
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools to display or change the CPU governor settings";
|
||||
homepage = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
diff -u cpufrequtils-008/Makefile cpufrequtils-008.new/Makefile
|
||||
--- cpufrequtils-008/Makefile 2012-05-06 01:17:18.000000000 +0200
|
||||
+++ cpufrequtils-008.new/Makefile 2013-08-16 20:52:29.961086536 +0200
|
||||
@@ -205,7 +205,8 @@
|
||||
@xgettext --default-domain=$(PACKAGE) --add-comments \
|
||||
--keyword=_ --keyword=N_ $(UTIL_SRC) && \
|
||||
test -f $(PACKAGE).po && \
|
||||
- mv -f $(PACKAGE).po po/$(PACKAGE).pot
|
||||
+ mv -f $(PACKAGE).po po/$(PACKAGE).pot && \
|
||||
+ sed -i -e'/POT-Creation/d' po/*.pot
|
||||
|
||||
update-gmo: po/$(PACKAGE).pot
|
||||
@for HLANG in $(LANGUAGES); do \
|
||||
@@ -217,6 +218,7 @@
|
||||
echo "msgmerge for $$HLANG failed!"; \
|
||||
rm -f po/$$HLANG.new.po; \
|
||||
fi; \
|
||||
+ sed -i -e'/POT-Creation/d' po/*.po; \
|
||||
msgfmt --statistics -o po/$$HLANG.gmo po/$$HLANG.po; \
|
||||
done;
|
||||
|
||||
Common subdirectories: cpufrequtils-008/man and cpufrequtils-008.new/man
|
||||
Common subdirectories: cpufrequtils-008/po and cpufrequtils-008.new/po
|
||||
Common subdirectories: cpufrequtils-008/utils and cpufrequtils-008.new/utils
|
||||
Loading…
Add table
Add a link
Reference in a new issue