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
46
pkgs/applications/misc/nwg-menu/default.nix
Normal file
46
pkgs/applications/misc/nwg-menu/default.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{ lib, fetchFromGitHub
|
||||
, buildGoModule, pkg-config, wrapGAppsHook, gobject-introspection
|
||||
, gtk-layer-shell, gtk3, pango, gdk-pixbuf, atk
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "nwg-menu";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nwg-piotr";
|
||||
repo = "nwg-menu";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-M948RGU9/PwUtFRmf1Po7KlrGxqRPiOZKfS1Vv3vqW8=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-HyrjquJ91ddkyS8JijHd9HjtfwSQykXCufa2wzl8RNk=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = [ atk gtk3 gdk-pixbuf gtk-layer-shell pango ];
|
||||
nativeBuildInputs = [ pkg-config wrapGAppsHook gobject-introspection ];
|
||||
|
||||
prePatch = ''
|
||||
for file in main.go tools.go; do
|
||||
substituteInPlace $file --replace '/usr/share/nwg-menu' $out/share
|
||||
done
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/
|
||||
cp menu-start.css $out/share/
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "$out/share")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/nwg-piotr/nwg-menu";
|
||||
description = "MenuStart plugin for nwg-panel";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ berbiche ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue