mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-25 21:42:20 +03:00
15 lines
343 B
Nix
15 lines
343 B
Nix
{
|
|
inputs = {
|
|
crane.url = "github:ipetkov/crane";
|
|
nixpkgs.follows = "crane/nixpkgs";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, flake-utils, crane, ... }: flake-utils.lib.eachDefaultSystem
|
|
(system: {
|
|
packages.dummy = crane.lib.${system}.mkDummySrc {
|
|
src = self;
|
|
};
|
|
});
|
|
}
|