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/development/libraries/frame/default.nix
Normal file
24
pkgs/development/libraries/frame/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ enableX11 ? true
|
||||
, lib, stdenv, fetchurl, pkg-config, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "frame";
|
||||
version = "2.5.0";
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/frame/trunk/v${version}/+download/${pname}-${version}.tar.xz";
|
||||
sha256 = "bc2a20cd3ac1e61fe0461bd3ee8cb250dbcc1fa511fad0686d267744e9c78f3a";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
stdenv pkg-config
|
||||
] ++ lib.optionals enableX11 [xorg.xorgserver xorg.libX11 xorg.libXext xorg.libXi];
|
||||
|
||||
configureFlags = lib.optional enableX11 "--with-x11";
|
||||
|
||||
meta = {
|
||||
homepage = "https://launchpad.net/frame";
|
||||
description = "Handles the buildup and synchronization of a set of simultaneous touches";
|
||||
license = lib.licenses.gpl3;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue