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
24
pkgs/tools/graphics/lepton/default.nix
Normal file
24
pkgs/tools/graphics/lepton/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, git, glibc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2019-08-20";
|
||||
pname = "lepton-unstable";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "lepton";
|
||||
owner = "dropbox";
|
||||
rev = "3d1bc19da9f13a6e817938afd0f61a81110be4da";
|
||||
sha256 = "0aqs6nvcbq8cbfv8699fa634bsz7csmk0169n069yvv17d1c07fd";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake git ];
|
||||
buildInputs = lib.optionals stdenv.isLinux [ glibc.static ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dropbox/lepton";
|
||||
description = "A tool to losslessly compress JPEGs";
|
||||
license = licenses.asl20;
|
||||
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
||||
maintainers = with maintainers; [ artemist ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue