mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
lite-xl: 2.1.1 -> 2.1.3
This commit is contained in:
parent
59fa082abd
commit
14d722d567
1 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,4 @@
|
|||
{ agg
|
||||
, fetchFromGitHub
|
||||
{ fetchFromGitHub
|
||||
, Foundation
|
||||
, freetype
|
||||
, lib
|
||||
|
@ -8,35 +7,36 @@
|
|||
, ninja
|
||||
, pcre2
|
||||
, pkg-config
|
||||
, reproc
|
||||
, SDL2
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lite-xl";
|
||||
version = "2.1.1";
|
||||
version = "2.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lite-xl";
|
||||
repo = "lite-xl";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-tZ9bCazs4ygNl5RKFNUtxboaMcG8a7mIz2FuiExX1d4=";
|
||||
hash = "sha256-4ykUdcNwJ4r/4u9H+c8pgupY3BaPi2y69X6yaDjCjac=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
agg
|
||||
freetype
|
||||
lua5_4
|
||||
pcre2
|
||||
reproc
|
||||
SDL2
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Foundation
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Duse_system_lua=true"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A lightweight text editor written in Lua";
|
||||
homepage = "https://github.com/lite-xl/lite-xl";
|
||||
|
|
Loading…
Reference in a new issue