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
37
pkgs/applications/editors/notepad-next/default.nix
Normal file
37
pkgs/applications/editors/notepad-next/default.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{ mkDerivation, lib, fetchFromGitHub, qmake, libsForQt5, stdenv }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "notepad-next";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dail8859";
|
||||
repo = "NotepadNext";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-J7Ngt6YtAAZsza2lN0d1lX3T8gNJHp60sCwwaLMGBHQ=";
|
||||
# External dependencies - https://github.com/dail8859/NotepadNext/issues/135
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ qmake libsForQt5.qt5.qttools ];
|
||||
qmakeFlags = [ "src/NotepadNext.pro" ];
|
||||
|
||||
# References
|
||||
# https://github.com/dail8859/NotepadNext/blob/master/doc/Building.md
|
||||
# https://github.com/dail8859/NotepadNext/pull/124
|
||||
postPatch = ''
|
||||
substituteInPlace ./src/NotepadNext/NotepadNext.pro --replace /usr $out
|
||||
'';
|
||||
|
||||
# Upstream suggestion: https://github.com/dail8859/NotepadNext/issues/135
|
||||
CXXFLAGS = "-std=gnu++1z";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dail8859/NotepadNext";
|
||||
description = "Notepad++-like editor for the Linux desktop";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.sebtm ];
|
||||
broken = stdenv.isAarch64;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue