Skip to content

Commit

Permalink
cached-nix-shell: init at 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xzfc committed Apr 7, 2020
1 parent 4fe81e3 commit 821527f
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pkgs/tools/nix/cached-nix-shell/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -25144,6 +25144,8 @@ in

brightnessctl = callPackage ../misc/brightnessctl { };

cached-nix-shell = callPackage ../tools/nix/cached-nix-shell {};

calaos_installer = libsForQt5.callPackage ../misc/calaos/installer {};

ccemux = callPackage ../misc/emulators/ccemux { };
Expand Down

0 comments on commit 821527f

Please sign in to comment.