linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / boost-process / default.nix
blob148e27faa2b66c91236388506d87aa928c56eaa7
1 { lib, stdenv, fetchurl, unzip }:
3 stdenv.mkDerivation {
4   name = "boost-process-0.5";
6   src = fetchurl {
7     url = "http://www.highscore.de/boost/process0.5/process.zip";
8     sha256 = "1v9y9pffb2b7p642kp9ic4z6kg42ziizmyvbgrqd1ci0i4gn0831";
9   };
11   nativeBuildInputs = [ unzip ];
13   unpackPhase = ''
14     mkdir $name
15     cd $name
16     unzip $src
17   '';
19   installPhase = ''
20     mkdir -p $out/include
21     cp -r boost $out/include
22   '';
24   meta = with lib; {
25     homepage = "http://www.highscore.de/boost/process0.5/";
26     description = "Library to manage system processes";
27     license = licenses.boost;
28     platforms = platforms.unix;
29     maintainers = with maintainers; [ abbradar ];
30   };