nixpkgs_local/release.nix

20 lines
422 B
Nix
Raw Normal View History

2019-02-28 08:42:46 +01:00
{ ... }:
let
pkgs = import <nixpkgs> { config = { allowUnfree = true; allowBroken = true;}; };
jobs = rec {
linux_surface = pkgs.callPackage ./linux_surface/default.nix {};
mu-git = pkgs.callPackage ./mu-git {};
xdiskusage = pkgs.callPackage ./xdiskusage {};
};
in jobs // {
channel = pkgs.releaseTools.channel {
name = "nixpkgs_local";
src = ./.;
constituents = jobs;
};
}