colmena/default.nix

42 lines
1.4 KiB
Nix
Raw Normal View History

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
lib = pkgs.lib;
stdenv = pkgs.stdenv;
2021-02-10 09:39:25 +01:00
rustPlatform = pkgs.rustPlatform;
2021-11-18 22:15:20 +01:00
in rustPlatform.buildRustPackage rec {
pname = "colmena";
2021-11-18 22:15:20 +01:00
version = "0.2.0-pre";
2020-12-18 10:57:32 +01:00
2021-11-18 22:15:20 +01:00
# We guarantee CLI and Nix API stability for the same minor version
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
src = lib.cleanSourceWith {
2021-11-18 07:33:30 +01:00
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" ]);
src = lib.cleanSource ./.;
};
2021-11-18 22:15:20 +01:00
cargoSha256 = "sha256-IiAJ+sQasimcn4nSv4ACBwP1NLGNArtcIbwzkx0v/7w=";
2021-02-11 20:55:45 +01:00
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
mkdir completions
for shell in bash fish zsh; do
$out/bin/colmena gen-completions $shell > completions/$shell
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
}