mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
multipart-parser-c: init at unstable-2015-12-14
This commit is contained in:
parent
bca5d89ccf
commit
931ee3e589
2 changed files with 36 additions and 0 deletions
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;
|
||||
};
|
||||
|
||||
multipart-parser-c = callPackage ../development/libraries/multipart-parser-c { };
|
||||
|
||||
multipath-tools = callPackage ../os-specific/linux/multipath-tools { };
|
||||
|
||||
musl = callPackage ../os-specific/linux/musl { };
|
||||
|
|
Loading…
Reference in a new issue