35 lines
1 KiB
Nix
35 lines
1 KiB
Nix
|
args : with args;
|
||
|
let localDefs = builderDefs {
|
||
|
src = /* put a fetchurl here */
|
||
|
fetchurl {
|
||
|
url = http://releases.compiz-fusion.org/0.7.4/compiz-bcop-0.7.4.tar.bz2;
|
||
|
sha256 = "1dfkwac45p6bl64gn58jnj5h99w81mlqkzfn7jni96kgspvnipjf";
|
||
|
};
|
||
|
buildInputs = (import ../general-dependencies.nix args);
|
||
|
propagatedBuildInputs = [getopt libxslt];
|
||
|
configureFlags = [];
|
||
|
} null; /* null is a terminator for sumArgs */
|
||
|
in with localDefs;
|
||
|
let
|
||
|
fixPkgconfig = FullDepEntry ("
|
||
|
ensureDir \$out/lib
|
||
|
ln -fs \$out/share/pkgconfig \$out/lib/pkgconfig
|
||
|
") [minInit doMakeInstall defEnsureDir];
|
||
|
fixInterpreter = FullDepEntry ("
|
||
|
sed -e 's@^#!/bin/bash@#! ${stdenv.bash}/bin/bash@' -i \$out/bin/bcop
|
||
|
") [minInit doMakeInstall];
|
||
|
in
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "compiz-bcop-"+version;
|
||
|
builder = writeScript (name + "-builder")
|
||
|
(textClosure localDefs [doAutotools doConfigure doMakeInstall fixPkgconfig fixInterpreter doForceShare
|
||
|
doPropagate]);
|
||
|
inherit propagatedBuildInputs;
|
||
|
meta = {
|
||
|
description = "
|
||
|
Compiz BCOP.
|
||
|
";
|
||
|
inherit src;
|
||
|
};
|
||
|
}
|