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
29
pkgs/development/libraries/lesstif/default.nix
Normal file
29
pkgs/development/libraries/lesstif/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{lib, stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lesstif";
|
||||
version = "0.95.2";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/lesstif/${pname}-${version}.tar.bz2";
|
||||
sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
|
||||
};
|
||||
buildInputs = [xlibsWrapper];
|
||||
propagatedBuildInputs = [libXp libXau];
|
||||
|
||||
# These patches fix a number of later issues - in particular the
|
||||
# render_table_crash shows up in 'arb'. The same patches appear
|
||||
# in Debian, so we assume they have been sent upstream.
|
||||
#
|
||||
patches = [
|
||||
./c-missing_xm_h.patch
|
||||
./c-render_table_crash.patch
|
||||
./c-xpmpipethrough.patch
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An open source clone of the Motif widget set";
|
||||
homepage = "http://lesstif.sourceforge.net";
|
||||
platforms = platforms.unix;
|
||||
license = with licenses; [ gpl2 lgpl2 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue