forked from DGNum/colmena
default.nix: Switch to flake-compat
`package.nix` is kept in sync with the expression in upstream Nixpkgs.
This commit is contained in:
parent
abb74b9f49
commit
7e15450fd2
4 changed files with 45 additions and 58 deletions
47
default.nix
47
default.nix
|
@ -1,46 +1,3 @@
|
||||||
let
|
let
|
||||||
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
flake = import ./flake-compat.nix;
|
||||||
lockedPkgs = import (fetchTarball {
|
in flake.defaultNix
|
||||||
url = "https://github.com/NixOS/nixpkgs/archive/${lock.nodes.nixpkgs.locked.rev}.tar.gz";
|
|
||||||
sha256 = lock.nodes.nixpkgs.locked.narHash;
|
|
||||||
}) {};
|
|
||||||
in {
|
|
||||||
pkgs ? lockedPkgs,
|
|
||||||
}: let
|
|
||||||
inherit (pkgs) lib stdenv rustPlatform installShellFiles;
|
|
||||||
in rustPlatform.buildRustPackage rec {
|
|
||||||
pname = "colmena";
|
|
||||||
version = "0.3.0-pre";
|
|
||||||
|
|
||||||
src = lib.cleanSourceWith {
|
|
||||||
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" "integration-tests" ]);
|
|
||||||
src = lib.cleanSource ./.;
|
|
||||||
};
|
|
||||||
|
|
||||||
cargoSha256 = "sha256-UUDKAY5zOm/okdRN9Bh+1OgPJFnd1Gw5VMd/+/P46jQ=";
|
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
|
||||||
|
|
||||||
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
|
||||||
installShellCompletion --cmd colmena \
|
|
||||||
--bash <($out/bin/colmena gen-completions bash) \
|
|
||||||
--zsh <($out/bin/colmena gen-completions zsh) \
|
|
||||||
--fish <($out/bin/colmena gen-completions fish)
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Recursive Nix is not stable yet
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
# We guarantee CLI and Nix API stability for the same minor version
|
|
||||||
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "A simple, stateless NixOS deployment tool";
|
|
||||||
homepage = "https://zhaofengli.github.io/colmena/${passthru.apiVersion}";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ zhaofengli ];
|
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
# We still maintain the expression in a Nixpkgs-acceptable form
|
# We still maintain the expression in a Nixpkgs-acceptable form
|
||||||
defaultPackage = self.packages.${system}.colmena;
|
defaultPackage = self.packages.${system}.colmena;
|
||||||
packages = rec {
|
packages = rec {
|
||||||
colmena = import ./default.nix { inherit pkgs; };
|
colmena = pkgs.callPackage ./package.nix { };
|
||||||
|
|
||||||
# Full user manual
|
# Full user manual
|
||||||
manual = let
|
manual = let
|
||||||
|
@ -59,9 +59,7 @@
|
||||||
};
|
};
|
||||||
}) // {
|
}) // {
|
||||||
overlay = final: prev: {
|
overlay = final: prev: {
|
||||||
colmena = import ./default.nix {
|
colmena = final.callPackage ./package.nix { };
|
||||||
pkgs = final;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,7 @@
|
||||||
let
|
let
|
||||||
lock = builtins.fromJSON (builtins.readFile ../flake.lock);
|
flake = (import ../flake-compat.nix).defaultNix;
|
||||||
pinned = fetchTarball {
|
in import flake.inputs.nixpkgs.outPath {
|
||||||
url = "https://github.com/NixOS/nixpkgs/archive/${lock.nodes.nixpkgs.locked.rev}.tar.gz";
|
|
||||||
sha256 = lock.nodes.nixpkgs.locked.narHash;
|
|
||||||
};
|
|
||||||
in import pinned {
|
|
||||||
overlays = [
|
overlays = [
|
||||||
(final: prev: {
|
flake.overlay
|
||||||
colmena = final.callPackage ../default.nix { };
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
38
package.nix
Normal file
38
package.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ lib, stdenv, rustPlatform, installShellFiles }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "colmena";
|
||||||
|
version = "0.3.0-pre";
|
||||||
|
|
||||||
|
src = lib.cleanSourceWith {
|
||||||
|
filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" "integration-tests" ]);
|
||||||
|
src = lib.cleanSource ./.;
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-UUDKAY5zOm/okdRN9Bh+1OgPJFnd1Gw5VMd/+/P46jQ=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
||||||
|
installShellCompletion --cmd colmena \
|
||||||
|
--bash <($out/bin/colmena gen-completions bash) \
|
||||||
|
--zsh <($out/bin/colmena gen-completions zsh) \
|
||||||
|
--fish <($out/bin/colmena gen-completions fish)
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Recursive Nix is not stable yet
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
# We guarantee CLI and Nix API stability for the same minor version
|
||||||
|
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A simple, stateless NixOS deployment tool";
|
||||||
|
homepage = "https://zhaofengli.github.io/colmena/${passthru.apiVersion}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ zhaofengli ];
|
||||||
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue