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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,73 @@
{ lib, stdenv
, fetchFromGitLab
, perlPackages
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "gcstar";
version = "1.7.3";
src = fetchFromGitLab {
owner = "Kerenoc";
repo = "GCstar";
rev = "v${version}";
sha256 = "1hah8ijh9mvcgbh36y3d3s6y79mzz27w24f2i29qllv7cayf6129";
};
nativeBuildInputs = [ wrapGAppsHook ];
buildInputs = with perlPackages; [
perl
ArchiveZip
DateCalc
DateTimeFormatStrptime
Glib
Gtk3
Gtk3SimpleList
GD
GDGraph
GDText
HTMLParser
JSON
ImageExifTool
librelative
LWP
LWPProtocolHttps
MP3Info
MP3Tag
NetFreeDB
OggVorbisHeaderPurePerl
Pango
XMLSimple
XMLParser
];
installPhase = ''
runHook preInstall
cd gcstar
perl install --text --prefix=$out
runHook postInstall
'';
postFixup = ''
wrapProgram $out/bin/gcstar --prefix PERL5LIB : $PERL5LIB
'';
meta = with lib; {
homepage = "https://gitlab.com/Kerenoc/GCstar";
description = "Manage your collections of movies, games, books, music and more";
longDescription = ''
GCstar is an application for managing your collections.
It supports many types of collections, including movies, books, games, comics, stamps, coins, and many more.
You can even create your own collection type for whatever unique thing it is that you collect!
Detailed information on each item can be automatically retrieved from the internet and you can store additional data, such as the location or who you've lent it to.
You may also search and filter your collections by many criteria.
'';
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dasj19 ];
platforms = platforms.all;
};
}