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
26
pkgs/tools/networking/fdm/default.nix
Normal file
26
pkgs/tools/networking/fdm/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, openssl, tdb, zlib, flex, bison }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fdm";
|
||||
version = "2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nicm";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0j2n271ni5wslgjq1f4zgz1nsvqjf895dxy3ij5c904bbp8ckcwq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ openssl tdb zlib flex bison ];
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mail fetching and delivery tool - should do the job of getmail and procmail";
|
||||
maintainers = with maintainers; [ ninjin raskin ];
|
||||
platforms = with platforms; linux;
|
||||
homepage = "https://github.com/nicm/fdm";
|
||||
downloadPage = "https://github.com/nicm/fdm/releases";
|
||||
license = licenses.isc;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue