2021-06-29 10:02:43 +02:00
|
|
|
let
|
|
|
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
|
|
|
lockedPkgs = import (fetchTarball {
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${lock.nodes.nixpkgs.locked.rev}.tar.gz";
|
|
|
|
sha256 = lock.nodes.nixpkgs.locked.narHash;
|
|
|
|
}) {};
|
|
|
|
in {
|
|
|
|
pkgs ? lockedPkgs,
|
2020-12-16 05:58:39 +01:00
|
|
|
}: let
|
2021-01-24 23:08:48 +01:00
|
|
|
lib = pkgs.lib;
|
2021-06-29 10:02:43 +02:00
|
|
|
stdenv = pkgs.stdenv;
|
2021-02-10 09:39:25 +01:00
|
|
|
rustPlatform = pkgs.rustPlatform;
|
2020-12-18 10:57:32 +01:00
|
|
|
in rustPlatform.buildRustPackage {
|
|
|
|
name = "colmena-dev";
|
|
|
|
version = "0.1.0";
|
|
|
|
|
2021-01-24 23:08:48 +01:00
|
|
|
src = lib.cleanSourceWith {
|
|
|
|
filter = name: type: !(type == "directory" && baseNameOf name == "target");
|
|
|
|
src = lib.cleanSourceWith {
|
|
|
|
filter = lib.cleanSourceFilter;
|
|
|
|
src = ./.;
|
|
|
|
};
|
|
|
|
};
|
2021-08-25 18:51:48 +02:00
|
|
|
cargoSha256 = "sha256-/108zjC937AX5HVTGfHD6DRh3abRdCWDXpOP1kIple0=";
|
2021-02-11 20:55:45 +01:00
|
|
|
|
2021-06-29 10:02:43 +02:00
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2021-03-23 22:14:04 +01:00
|
|
|
mkdir completions
|
|
|
|
for shell in bash fish zsh; do
|
2021-06-29 10:02:43 +02:00
|
|
|
$out/bin/colmena gen-completions $shell > completions/$shell
|
2021-03-23 22:14:04 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p "$out/share/"{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
|
|
|
|
cp completions/bash $out/share/bash-completion/completions/colmena
|
|
|
|
cp completions/fish $out/share/fish/vendor_completions.d/colmena.fish
|
|
|
|
cp completions/zsh $out/share/zsh/site-functions/_colmena
|
|
|
|
'';
|
|
|
|
|
2021-02-11 20:55:45 +01:00
|
|
|
# Recursive Nix is not stable yet
|
|
|
|
doCheck = false;
|
2020-12-18 10:57:32 +01:00
|
|
|
}
|