Compare commits
No commits in common. "a35cc60f237588c6d05dc72c5d16e93f52749d2e" and "2d15d63dcbaa911cd6cf4b84472908419bd2780b" have entirely different histories.
a35cc60f23
...
2d15d63dcb
4 changed files with 1 additions and 22 deletions
|
@ -6,7 +6,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, nixpkgs, ... }: {
|
outputs = inputs@{ self, nixpkgs, ... }: {
|
||||||
legacyPackages = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (system: import ./nix {
|
packages = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (system: import ./nix {
|
||||||
inherit system inputs;
|
inherit system inputs;
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
rustPlatform,
|
|
||||||
stdenv,
|
|
||||||
}:
|
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
|
||||||
pname = "backend";
|
|
||||||
version = "0.1";
|
|
||||||
|
|
||||||
src = ../.;
|
|
||||||
|
|
||||||
cargoHash = "sha256-NRrWWD3e2zm4rVYyCPm3vQhPDRkVMauTnoENwRucXcw=";
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
platforms = lib.platforms.all;
|
|
||||||
mainProgram = "backend";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -2,5 +2,4 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
native = pkgs.callPackage ./native.nix {};
|
native = pkgs.callPackage ./native.nix {};
|
||||||
backend = pkgs.callPackage ./backend.nix {};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,6 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
maintainers = with lib.maintainers; [ jopejoe1 ];
|
maintainers = with lib.maintainers; [ jopejoe1 ];
|
||||||
mainProgram = "license-tool";
|
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue