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
35
pkgs/development/interpreters/lolcode/default.nix
Normal file
35
pkgs/development/interpreters/lolcode/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, doxygen, cmake, readline }:
|
||||
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "lolcode";
|
||||
version = "0.11.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "justinmeza";
|
||||
repo = "lci";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-VMBW3/sw+1kI6iuOckSPU1TIeY6QORcSfFLFkRYw3Gs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake doxygen ];
|
||||
buildInputs = [ readline ];
|
||||
|
||||
# Maybe it clashes with lci scientific logic software package...
|
||||
postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
|
||||
|
||||
meta = {
|
||||
homepage = "http://lolcode.org";
|
||||
description = "An esoteric programming language";
|
||||
longDescription = ''
|
||||
LOLCODE is a funny esoteric programming language, a bit Pascal-like,
|
||||
whose keywords are LOLspeak.
|
||||
'';
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
mainProgram = "lolcode-lci";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue