os/pkgs/shells/zsh/purs/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2019-12-15 04:37:46 +00:00
{ stdenv, fetchFromGitHub, openssl, pkgconfig, rustPlatform }:
with rustPlatform;
let
2020-01-04 05:06:31 +00:00
inherit (builtins) readFile toFile;
2019-12-15 04:37:46 +00:00
init = toFile "init.sh" "${readFile ./init.sh}";
2020-07-31 04:17:28 +00:00
in
buildRustPackage {
2019-12-15 04:37:46 +00:00
pname = "purs";
version = "0.1.0";
srcs = fetchFromGitHub {
owner = "TimB87";
2019-12-15 04:37:46 +00:00
repo = "purs";
rev = "ee40ff5edf79a1aee7f87b97ca32744944778769";
hash = "sha256-ETU7dDGVa2ggM+qoFgi8k4MJNuqb3kNCX9ZbEA4r5PM=";
2019-12-15 04:37:46 +00:00
};
2020-12-29 03:07:34 +00:00
nativeBuildInputs = [ openssl pkgconfig ];
2019-12-15 04:37:46 +00:00
2020-12-29 03:07:34 +00:00
cargoSha256 = "sha256-FPxJuVyuuHdo2dNLhmJK6xXy12LJsbKNWBAo8pcuLDg=";
preBuild = ''
export PKG_CONFIG_PATH=${openssl.dev}/lib/pkgconfig
export OPENSSL_DIRS=${openssl.out}:${openssl.dev}
'';
2019-12-15 04:37:46 +00:00
postInstall = ''
mkdir -p $out/share/zsh/plugins/purs
substitute ${init} $out/share/zsh/plugins/purs/purs.zsh \
--subst-var-by PURS $out
'';
meta = with stdenv.lib; {
description = "A Pure-inspired prompt in Rust";
2020-01-04 05:06:31 +00:00
homepage = "https://github.com/xcambar/purs";
2019-12-15 04:37:46 +00:00
maintainers = [ maintainers.nrdxp ];
license = licenses.mit;
platforms = platforms.unix;
2019-12-15 04:37:46 +00:00
inherit version;
};
}