Merge pull request #81919 from xzfc/cached-nix-shell
cached-nix-shell: init at 0.1.2
This commit is contained in:
commit
0382ea8302
49
pkgs/tools/nix/cached-nix-shell/default.nix
Normal file
49
pkgs/tools/nix/cached-nix-shell/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, openssl, pkgconfig, ronn, rustPlatform }:
|
||||||
|
|
||||||
|
let
|
||||||
|
blake3-src = fetchFromGitHub {
|
||||||
|
owner = "BLAKE3-team";
|
||||||
|
repo = "BLAKE3";
|
||||||
|
rev = "0.3.1";
|
||||||
|
sha256 = "0wkxx2w56hsng28p8zpndsy288ix4s5qg6xqjzgjz53fbyk46hda";
|
||||||
|
};
|
||||||
|
|
||||||
|
in rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cached-nix-shell";
|
||||||
|
version = "0.1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "xzfc";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0pzwknpc4qrh9pv5z0xvldql2dkj9ddksvaci86a4f8cnd86p2l6";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1n88gcnrfdrk025hb54igc83cn5vlv8n6ndyx1ydmzhd95vhbznf";
|
||||||
|
|
||||||
|
# The BLAKE3 C library is intended to be built by the project depending on it
|
||||||
|
# rather than as a standalone library.
|
||||||
|
# https://github.com/BLAKE3-team/BLAKE3/blob/0.3.1/c/README.md#building
|
||||||
|
BLAKE3_CSRC = "${blake3-src}/c";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ ronn ];
|
||||||
|
|
||||||
|
postBuild = ''
|
||||||
|
ronn -r cached-nix-shell.1.md
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/lib $out/share/cached-nix-shell $out/share/man/man1 $out/var/empty
|
||||||
|
cp target/release/build/cached-nix-shell-*/out/trace-nix.so $out/lib
|
||||||
|
cp rcfile.sh $out/share/cached-nix-shell/rcfile.sh
|
||||||
|
cp cached-nix-shell.1 $out/share/man/man1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Instant startup time for nix-shell";
|
||||||
|
homepage = "https://github.com/xzfc/cached-nix-shell";
|
||||||
|
license = with licenses; [ unlicense /* or */ mit ];
|
||||||
|
maintainers = with maintainers; [ xzfc ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -25094,6 +25094,8 @@ in
|
|||||||
|
|
||||||
brightnessctl = callPackage ../misc/brightnessctl { };
|
brightnessctl = callPackage ../misc/brightnessctl { };
|
||||||
|
|
||||||
|
cached-nix-shell = callPackage ../tools/nix/cached-nix-shell {};
|
||||||
|
|
||||||
calaos_installer = libsForQt5.callPackage ../misc/calaos/installer {};
|
calaos_installer = libsForQt5.callPackage ../misc/calaos/installer {};
|
||||||
|
|
||||||
ccemux = callPackage ../misc/emulators/ccemux { };
|
ccemux = callPackage ../misc/emulators/ccemux { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user