mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 00:13:02 +03:00
21 lines
356 B
Nix
21 lines
356 B
Nix
{
|
|
inputs = {
|
|
dream2nix.url = "github:nix-community/dream2nix";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
dream2nix,
|
|
} @ inp: (dream2nix.lib.makeFlakeOutputs {
|
|
systems = ["x86_64-linux"];
|
|
config.projectRoot = ./.;
|
|
source = ./.;
|
|
projects = {
|
|
htop = {
|
|
name = "htop";
|
|
translator = "debian-binary";
|
|
};
|
|
};
|
|
});
|
|
}
|