improve pkgs

This commit is contained in:
Rongsong Shen 2025-05-26 08:11:23 +00:00
parent 26661fe1a6
commit 5f5f78c752
2 changed files with 1 additions and 1 deletions

View file

@ -1,31 +0,0 @@
# xbuild.nix
{
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
libtool,
}:
stdenv.mkDerivation {
pname = "xbuild";
version = "v0.0.1";
src = fetchFromGitHub {
owner = "shen390s";
repo = "xbuild";
rev = "master";
sha256 = "sha256-gYIYd3J4mCJJU0yJ+2xL/5URKo+M8T2Q9CWLbxQ2rtQ=";
};
nativeBuildInputs = [
autoconf
automake
libtool
];
preConfigure = ''
aclocal && automake --add-missing && autoconf
'';
}