tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cconv: expand platforms to all
Ben Siraphob
5 years ago
a3bea2de
f35d716f
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
cconv
default.nix
+6
-5
pkgs/tools/text/cconv/default.nix
···
1
-
{ lib, stdenv, fetchurl, autoreconfHook }:
2
-
let version = "0.6.3"; in
3
-
stdenv.mkDerivation {
4
pname = "cconv";
5
-
inherit version;
6
7
src = fetchurl {
8
url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz";
···
10
};
11
12
nativeBuildInputs = [ autoreconfHook ];
0
13
14
meta = with lib; {
15
description = "A iconv based simplified-traditional chinese conversion tool";
16
homepage = "https://github.com/xiaoyjy/cconv";
17
license = licenses.mit;
18
-
platforms = platforms.linux;
19
maintainers = [ maintainers.redfish64 ];
20
};
21
}
···
1
+
{ lib, stdenv, fetchurl, autoreconfHook, libiconv }:
2
+
3
+
stdenv.mkDerivation rec {
4
pname = "cconv";
5
+
version = "0.6.3";
6
7
src = fetchurl {
8
url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz";
···
10
};
11
12
nativeBuildInputs = [ autoreconfHook ];
13
+
buildInputs = [ libiconv ];
14
15
meta = with lib; {
16
description = "A iconv based simplified-traditional chinese conversion tool";
17
homepage = "https://github.com/xiaoyjy/cconv";
18
license = licenses.mit;
19
+
platforms = platforms.all;
20
maintainers = [ maintainers.redfish64 ];
21
};
22
}