12 lines
192 B
Nix
12 lines
192 B
Nix
with import <nixpkgs> {};
|
|
|
|
let
|
|
rustChannel = rustChannelOf {
|
|
channel = "stable";
|
|
date = "2023-08-16";
|
|
};
|
|
in
|
|
rustChannel.workspaceMembers.libadwaita.build.override {
|
|
src = ./.;
|
|
}
|