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
1
-
{ lib, stdenv, fetchurl, autoreconfHook }:
2
2
-
let version = "0.6.3"; in
3
3
-
stdenv.mkDerivation {
1
1
+
{ lib, stdenv, fetchurl, autoreconfHook, libiconv }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
pname = "cconv";
5
5
-
inherit version;
5
5
+
version = "0.6.3";
6
6
7
7
src = fetchurl {
8
8
url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz";
···
10
10
};
11
11
12
12
nativeBuildInputs = [ autoreconfHook ];
13
13
+
buildInputs = [ libiconv ];
13
14
14
15
meta = with lib; {
15
16
description = "A iconv based simplified-traditional chinese conversion tool";
16
17
homepage = "https://github.com/xiaoyjy/cconv";
17
18
license = licenses.mit;
18
18
-
platforms = platforms.linux;
19
19
+
platforms = platforms.all;
19
20
maintainers = [ maintainers.redfish64 ];
20
21
};
21
22
}