refine
This commit is contained in:
parent
c5ffccf45c
commit
769ef84cd3
2 changed files with 7 additions and 8 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
{pkgs,...}:
|
{pkgs,...}:
|
||||||
|
with pkgs;
|
||||||
{
|
{
|
||||||
xbuild = pkgs.callPackage ./pkgs/x/xbuild/package.nix {};
|
xbuild = callPackage ./pkgs/x/xbuild/package.nix {};
|
||||||
cedro = pkgs.callPackage ./pkgs/c/cedro/package.nix {};
|
cedro = callPackage ./pkgs/c/cedro/package.nix {};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,7 @@
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
autoconf,
|
pkgs,
|
||||||
automake,
|
|
||||||
libtool,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
|
@ -22,9 +20,9 @@ stdenv.mkDerivation {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoconf
|
pkgs.autoconf
|
||||||
automake
|
pkgs.automake
|
||||||
libtool
|
pkgs.libtool
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue