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
52
pkgs/applications/editors/jupp/default.nix
Normal file
52
pkgs/applications/editors/jupp/default.nix
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, ncurses
|
||||
, gpm
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jupp";
|
||||
version = "40";
|
||||
srcName = "joe-3.1${pname}${version}";
|
||||
|
||||
src = fetchurl {
|
||||
urls = [
|
||||
"https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz"
|
||||
"https://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz"
|
||||
];
|
||||
sha256 = "S+1DnN5/K+KU6W5J7z6RPqkPvl6RTbiIQD46J+gDWxo=";
|
||||
};
|
||||
|
||||
preConfigure = "chmod +x ./configure";
|
||||
|
||||
buildInputs = [
|
||||
gpm
|
||||
ncurses
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-curses"
|
||||
"--enable-getpwnam"
|
||||
"--enable-largefile"
|
||||
"--enable-termcap"
|
||||
"--enable-termidx"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.mirbsd.org/jupp.htm";
|
||||
downloadPage = "https://www.mirbsd.org/MirOS/dist/jupp/";
|
||||
description = "A portable fork of Joe's editor";
|
||||
longDescription = ''
|
||||
This is the portable version of JOE's Own Editor, which is currently
|
||||
developed at sourceforge, licenced under the GNU General Public License,
|
||||
Version 1, using autoconf/automake. This version has been enhanced by
|
||||
several functions intended for programmers or other professional users,
|
||||
and has a lot of bugs fixed. It is based upon an older version of joe
|
||||
because these behave better overall.
|
||||
'';
|
||||
license = licenses.gpl1Only;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue