blob: 3e51aad7ca3ec107dd8a477009ad7e433cf6a850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ }:
let
nixpkgs = fetchTarball {
# 2020-06-11 nixos-unstable, pinned because 20.03 is incompatible with crate2nix master
url = "https://github.com/NixOS/nixpkgs/archive/029a5de08390bb03c3f44230b064fd1850c6658a.tar.gz";
sha256 = "03fjkzhrs2avcvdabgm7a65rnyjaqbqdnv4q86qyjkkwg64g5m8x";
};
pkgs = import nixpkgs {
config = {};
overlays = [];
};
workspace = pkgs.callPackage ./Cargo.nix {};
in workspace.workspaceMembers.github-label-feed.build
|