mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
libotf: Add dev output
This commit is contained in:
parent
6d74e1cb5b
commit
2004343f56
@ -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)";
|
||||
|
Loading…
Reference in New Issue
Block a user