tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
unibilium: 20190811 → 2.1.1, fix cross-compilation
Nikolay Korotkiy
3 years ago
305b8d47
749c2d5b
+9
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
unibilium
default.nix
+9
-9
pkgs/development/libraries/unibilium/default.nix
···
1
1
{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
pname = "unibilium-unstable";
5
5
-
6
6
-
version = "20190811";
4
4
+
pname = "unibilium";
5
5
+
version = "2.1.1";
7
6
8
7
src = fetchFromGitHub {
9
8
owner = "neovim";
10
9
repo = "unibilium";
11
11
-
rev = "92d929fabaf94ea4feb48149bbc3bbea77c4fab0";
12
12
-
sha256 = "1l8p3fpdymba62x1f5d990v72z3m5f5g2yf505g0rlf2ysc5r1di";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "sha256-A/WECvma7u/Mmecvzi0cP168dt4v+zwC8CiFBkqWezA=";
13
12
};
14
13
15
15
-
makeFlags = [ "PREFIX=$(out)" ]
16
16
-
++ lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
14
14
+
makeFlags = [ "PREFIX=$(out)" "LIBTOOL=${libtool}/bin/libtool" ];
15
15
+
16
16
+
strictDeps = true;
17
17
18
18
-
nativeBuildInputs = [ pkg-config perl ];
19
19
-
buildInputs = [ libtool ncurses ];
18
18
+
nativeBuildInputs = [ pkg-config perl libtool ];
19
19
+
buildInputs = [ ncurses ];
20
20
21
21
meta = with lib; {
22
22
description = "A very basic terminfo library";