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
50
pkgs/tools/package-management/apt-dater/default.nix
Normal file
50
pkgs/tools/package-management/apt-dater/default.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ lib, stdenv, fetchFromGitHub
|
||||
, autoreconfHook, pkg-config, gettext
|
||||
, vim, glib, libxml2, ncurses, popt, screen
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "apt-dater";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "DE-IBH";
|
||||
repo = "apt-dater";
|
||||
rev = "v${version}";
|
||||
sha256 = "1r6gz9jkh1wxi11mcq5p9mqg0szclsaq8ic79vnfnbjdrmmdfi4y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config autoreconfHook gettext
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libxml2 ncurses vim glib popt screen
|
||||
];
|
||||
|
||||
configureFlags = [ "--disable-history" ];
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace etc/Makefile.am \
|
||||
--replace 02770 0770
|
||||
'';
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace configure.ac \
|
||||
--replace "/usr/bin/screen" "${screen}/bin/screen"
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/DE-IBH/apt-dater";
|
||||
description = "Terminal-based remote package update manager";
|
||||
longDescription = ''
|
||||
Provides an ncurses frontend for managing package updates on a large
|
||||
number of remote hosts using SSH. It supports Debian-based managed hosts
|
||||
as well as rug (e.g. openSUSE) and yum (e.g. CentOS) based systems.
|
||||
'';
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ c0bw3b ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue