5478df996a
svn path=/nixpkgs/trunk/; revision=17077
18 lines
458 B
Nix
18 lines
458 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "libwapcaplet-devel";
|
|
|
|
src = sourceByName "libwapcaplet";
|
|
|
|
installPhase = "make PREFIX=$out install";
|
|
buildInputs = [];
|
|
|
|
meta = {
|
|
description = "LibWapcaplet is a string internment library, written in C";
|
|
homepage = http://www.netsurf-browser.org/projects/libwapcaplet/;
|
|
license = "MIT";
|
|
maintainers = [args.lib.maintainers.marcweber];
|
|
platforms = args.lib.platforms.linux;
|
|
};
|
|
}
|