changed package name from 'fern' to 'shed'
This commit is contained in:
12
flake.nix
12
flake.nix
@@ -13,7 +13,7 @@
|
||||
in
|
||||
{
|
||||
packages.default = pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "fern";
|
||||
pname = "shed";
|
||||
version = "0.3.0";
|
||||
|
||||
src = self;
|
||||
@@ -23,22 +23,22 @@
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
passthru.shellPath = "/bin/fern";
|
||||
passthru.shellPath = "/bin/shed";
|
||||
|
||||
meta = with pkgs.lib; {
|
||||
description = "A Linux shell written in Rust";
|
||||
homepage = "https://github.com/km-clay/fern";
|
||||
homepage = "https://github.com/km-clay/shed";
|
||||
license = licenses.mit;
|
||||
maintainers = [ ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
};
|
||||
}) // {
|
||||
nixosModules.fern = import ./nix/module.nix;
|
||||
homeModules.fern = import ./nix/hm-module.nix;
|
||||
nixosModules.shed = import ./nix/module.nix;
|
||||
homeModules.shed = import ./nix/hm-module.nix;
|
||||
|
||||
overlays.default = final: prev: {
|
||||
fern = self.packages.${final.stdenv.hostPlatform.system}.default;
|
||||
shed = self.packages.${final.stdenv.hostPlatform.system}.default;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user