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
5
pkgs/development/libraries/psol/default.nix
Normal file
5
pkgs/development/libraries/psol/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ callPackage }:
|
||||
callPackage ./generic.nix {} {
|
||||
version = "1.13.35.2"; # Latest stable, 2018-02-05
|
||||
sha256 = "0xi2srf9gx0x2sz9r45zb35k2n0iv457if1lqzvbanls3f935cmr";
|
||||
}
|
||||
16
pkgs/development/libraries/psol/generic.nix
Normal file
16
pkgs/development/libraries/psol/generic.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ fetchzip, lib }:
|
||||
{ version, sha256 }:
|
||||
{ inherit version; } // fetchzip {
|
||||
inherit sha256;
|
||||
name = "psol-${version}";
|
||||
url = "https://dl.google.com/dl/page-speed/psol/${version}-x64.tar.gz";
|
||||
|
||||
meta = {
|
||||
description = "PageSpeed Optimization Libraries";
|
||||
homepage = "https://developers.google.com/speed/pagespeed/psol";
|
||||
license = lib.licenses.asl20;
|
||||
# WARNING: This only works with Linux because the pre-built PSOL binary is only supplied for Linux.
|
||||
# TODO: Build PSOL from source to support more platforms.
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue