mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
32 lines
684 B
Nix
32 lines
684 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "boost-process-0.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.highscore.de/boost/process0.5/process.zip";
|
|
sha256 = "1v9y9pffb2b7p642kp9ic4z6kg42ziizmyvbgrqd1ci0i4gn0831";
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
unpackPhase = ''
|
|
mkdir $name
|
|
cd $name
|
|
unzip $src
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp -r boost $out/include
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.highscore.de/boost/process0.5/;
|
|
description = "Library to manage system processes";
|
|
license = licenses.boost;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|