-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Recursive debian packages #58777
[WIP] Recursive debian packages #58777
Conversation
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Required for debugging when developing with the debBuild function. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This is a WIP patch and should not hit nixpkgs as-is. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Carefully pinging some previous authors of the files I touched here: @abbradar @rbvermaa @Profpatsch |
I’ll look at it later, maybe I can see where the error comes from. |
This line [0] does not seem to do the right thing. Replacing it with this seems to do what you want. There is still an bug with multiple layers of debs, but perhaps this would help track down the error.
Side note: in the past i've used https://github.com/matthewbauer/nix-bundle as a way to solve a similar problem (used the appimage approach). It made the .deb installs completely independent of the debian host - which was convenient. [0]
|
Now I get to build something, yay. But the output hangs for hours (it literally has been about 1.5 hrs right now) at
When building with
|
The latest patch does not even work. I don't know what is going on. What I tried:
|
So I constantly get
No matter what I try. I even hard-coded "name" in |
So the last patch rewrites some debian-build infrastructure (which was in nixpkgs before I started this PR) and now it compiles for me (only a no-dependency-package):
But as you can see, only the dependency of
That's because |
This commit rewrites the debian-build expression because it was cluttered with uneccessary attribute sets. All sets were merged into one set. The attribute "name" was renamed so it can more easily be distinguished from the "name" attribute of the resulting set. This somehow fixes the build of debian packages in `pkgs.buildRecDebpkg.makeDeb`. I don't know why.
Does not work. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
So what I debugged:
But then trying to
So I'm not sure where the error is here, but I assume that the image is missing some stuff. Someone with more knowledge about the whole setup should probably help me investigate because this might be totally wrong. |
Thank you for your contributions.
|
Motivation
We (as in "my employer and I") need to package software for debianoids (and RPM, but we're only looking into debian here).
I am therefore exploring the possibilities nix/nixpkgs gives us for building different versions for different customers with different patches and so on and so forth. Everything that is easy with nixpkgs (like custom compileflags, etc etc).
But, we need to ship .deb/.rpm packages. That is obviously not that easy with nixpkgs. There is support for building debian packages, which is
releaseTools.debBuild
- which only "kinda" works, as it leaves/nix
artifacts in the resulting .deb - but that is a different topic.So what am I doing here is: I try to build a whole dependency tree (all transitive dependencies) of a package as debian packages.
Prerequisites
I want to work with only nixpkgs and nix, no other tooling required
Expected outcome
I can build a nixpkgs package and I get all required dependencies as
.deb
.That means that I build
multitail
and getncurses.deb
andmultitail.deb
or I buildoctaveFull
and I get<long list of .deb files here>
.Current status
My functions can generate the attribute sets for the builder function (
releaseTools.debBuild
) pretty well... it works ~95% of the time.Unfortunately, I can not do the full job:
And I just do not get where this error comes from.
My request
So if some can have a look at my patches, I would welcome
Note
This is WIP and should not be considered for inclusion.