1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libotf: Add dev output

This commit is contained in:
Eelco Dolstra 2018-10-11 17:47:20 +02:00
parent 6d74e1cb5b
commit 2004343f56

View file

@ -1,4 +1,5 @@
{ stdenv, fetchurl, libXaw, freetype }:
stdenv.mkDerivation rec {
name = "libotf-0.9.16";
@ -7,8 +8,16 @@ stdenv.mkDerivation rec {
sha256 = "0sq6g3xaxw388akws6qrllp3kp2sxgk2dv4j79k6mm52rnihrnv8";
};
outputs = [ "out" "dev" ];
buildInputs = [ libXaw freetype ];
postInstall =
''
mkdir -p $dev/bin
mv $out/bin/libotf-config $dev/bin/
'';
meta = {
homepage = http://www.nongnu.org/m17n/;
description = "Multilingual text processing library (libotf)";