multipart-parser-c: init at unstable-2015-12-14
This commit is contained in:
parent
bca5d89ccf
commit
931ee3e589
34
pkgs/development/libraries/multipart-parser-c/default.nix
Normal file
34
pkgs/development/libraries/multipart-parser-c/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "multipart-parser-c";
|
||||||
|
version = "unstable-2015-12-14";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "iafonov";
|
||||||
|
repo = pname;
|
||||||
|
rev = "772639cf10db6d9f5a655ee9b7eb20b815fab396";
|
||||||
|
sha256 = "sha256:056r63vj8f1rwf3wk7jmwhm8ba25l6h1gs6jnkh0schbwcvi56xl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make solib
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib
|
||||||
|
mv lib*${stdenv.targetPlatform.extensions.sharedLibrary} $out/lib/
|
||||||
|
|
||||||
|
mkdir -p $out/include
|
||||||
|
mv *.h $out/include/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Http multipart parser implemented in C ";
|
||||||
|
homepage = https://github.com/iafonov/multipart-parser-c;
|
||||||
|
license = [ stdenv.lib.licenses.mit ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -15025,6 +15025,8 @@ in
|
|||||||
inherit modules;
|
inherit modules;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
multipart-parser-c = callPackage ../development/libraries/multipart-parser-c { };
|
||||||
|
|
||||||
multipath-tools = callPackage ../os-specific/linux/multipath-tools { };
|
multipath-tools = callPackage ../os-specific/linux/multipath-tools { };
|
||||||
|
|
||||||
musl = callPackage ../os-specific/linux/musl { };
|
musl = callPackage ../os-specific/linux/musl { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user