libdockapp: init at 0.7.3
This commit is contained in:
parent
8741edb2ec
commit
04e33d64aa
@ -8,4 +8,5 @@ lib.makeScope pkgs.newScope (self: with self; {
|
|||||||
sha256 = "sha256-BuSnwPIj3gUWMjj++SK+117xm/77u4gXLQzRFttei0w=";
|
sha256 = "sha256-BuSnwPIj3gUWMjj++SK+117xm/77u4gXLQzRFttei0w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libdockapp = callPackage ./libdockapp.nix { };
|
||||||
})
|
})
|
||||||
|
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, dockapps-sources, autoreconfHook, pkg-config
|
||||||
|
, libX11, libXext, libXpm, mkfontdir, fontutil }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libdockapp";
|
||||||
|
version = "0.7.3";
|
||||||
|
|
||||||
|
src = dockapps-sources;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ libX11 libXext libXpm fontutil mkfontdir ];
|
||||||
|
|
||||||
|
setSourceRoot = ''
|
||||||
|
export sourceRoot=$(echo */${pname})
|
||||||
|
'';
|
||||||
|
|
||||||
|
# There is a bug on --with-font
|
||||||
|
configureFlags = [
|
||||||
|
"--with-examples=no"
|
||||||
|
"--with-font=no"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A library providing a framework for dockapps";
|
||||||
|
homepage = "https://www.dockapps.net/libdockapp";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = [ maintainers.bstrik ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user