mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 00:24:47 +00:00
unibilium: 2.1.1 -> 2.1.2
Changes: https://github.com/neovim/unibilium/releases/tag/v2.1.2
This commit is contained in:
parent
3540ebe553
commit
7984c1d03b
@ -1,21 +1,20 @@
|
||||
{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses }:
|
||||
{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "unibilium";
|
||||
version = "2.1.1";
|
||||
version = "2.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "neovim";
|
||||
repo = "unibilium";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-A/WECvma7u/Mmecvzi0cP168dt4v+zwC8CiFBkqWezA=";
|
||||
sha256 = "sha256-6bFZtR8TUZJembRBj6wUUCyurUdsn3vDGnCzCti/ESc=";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" "LIBTOOL=${libtool}/bin/libtool" ];
|
||||
|
||||
strictDeps = true;
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkg-config perl libtool ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config perl libtool ];
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user