mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
35 lines
715 B
Nix
35 lines
715 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "multipart-parser-c";
|
|
version = "unstable-2015-12-14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iafonov";
|
|
repo = pname;
|
|
rev = "772639cf10db6d9f5a655ee9b7eb20b815fab396";
|
|
sha256 = "056r63vj8f1rwf3wk7jmwhm8ba25l6h1gs6jnkh0schbwcvi56xl";
|
|
};
|
|
|
|
buildPhase = ''
|
|
make solib
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib
|
|
mv lib*${stdenv.hostPlatform.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 = [ lib.licenses.mit ];
|
|
};
|
|
|
|
}
|