update too much
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
description = "Xaiya's packaged packages";
|
||||
|
||||
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs }:
|
||||
let
|
||||
systems = nixpkgs.lib.systems.flakeExposed;
|
||||
|
||||
forAllSystems =
|
||||
function:
|
||||
nixpkgs.lib.genAttrs systems (
|
||||
system: function (
|
||||
import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
}
|
||||
)
|
||||
);
|
||||
in {
|
||||
packages = forAllSystems (pkgs: {
|
||||
discord-music-presence = pkgs.callPackage ./pkgs/discord-music-presence.nix { };
|
||||
});
|
||||
|
||||
devShells = forAllSystems (pkgs: {
|
||||
default = pkgs.callPackage ./shell.nix { };
|
||||
});
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user