summary refs log tree commit diff stats
path: root/nix
diff options
context:
space:
mode:
authorAlan Pearce2017-07-08 19:17:31 +0200
committerAlan Pearce2017-07-08 19:17:31 +0200
commita0a7165e84f03b801f6bc3f3d530daedca26d955 (patch)
tree4472f0f3b5dc566e06cea12600db35b0c7f262a2 /nix
parentb8c5076a55617afa69abaee532948666b0c849b8 (diff)
parentc4534fd477bc2a79df553c2ac3d7d43963817f6c (diff)
downloaddotfiles-a0a7165e84f03b801f6bc3f3d530daedca26d955.tar.lz
dotfiles-a0a7165e84f03b801f6bc3f3d530daedca26d955.tar.zst
dotfiles-a0a7165e84f03b801f6bc3f3d530daedca26d955.zip
Merge branch 'master' of ssh://alanpearce.eu/dotfiles
Diffstat (limited to 'nix')
-rw-r--r--nix/.config/nixpkgs/config.nix2
-rw-r--r--nix/.config/nixpkgs/zr.nix42
2 files changed, 44 insertions, 0 deletions
diff --git a/nix/.config/nixpkgs/config.nix b/nix/.config/nixpkgs/config.nix
index 11d704a..ea6ae1a 100644
--- a/nix/.config/nixpkgs/config.nix
+++ b/nix/.config/nixpkgs/config.nix
@@ -10,6 +10,8 @@
       emacs = if stdenv.isDarwin then emacs25Macport else emacs;
     };
     nodejs = pkgsUnstable.nodejs-8_x;
+
+    zr = super.callPackage ./zr.nix {};
   };
 
   allowUnfree = true;
diff --git a/nix/.config/nixpkgs/zr.nix b/nix/.config/nixpkgs/zr.nix
new file mode 100644
index 0000000..1ef3e32
--- /dev/null
+++ b/nix/.config/nixpkgs/zr.nix
@@ -0,0 +1,42 @@
+{
+  fetchFromGitHub,
+  darwin,
+  stdenv,
+  rustPlatform,
+  cmake,
+  curl,
+  libiconv,
+  openssl,
+  zlib
+}:
+with rustPlatform;
+
+buildRustPackage rec {
+  name = "zr-${version}";
+  version = "0.4.8";
+
+  src = fetchFromGitHub {
+    owner = "jedahan";
+    repo = "zr";
+    rev = "${version}";
+    sha256 = "07kb8bk2zri1087dp3pk2zpqjy8rd40nw931z6nnm230ygq481zm";
+  };
+
+  buildInputs = [ cmake curl openssl zlib libiconv ] ++ stdenv.lib.optionals stdenv.isDarwin
+      (with darwin.apple_sdk.frameworks; [ Security ]);
+
+  cargoDepsHook = stdenv.lib.optionals stdenv.isDarwin ''
+    export OPENSSL_DIR=${openssl}
+    export OPENSSL_LIB_DIR=${openssl.out}/lib
+    export OPENSSL_INCLUDE_DIR=${openssl.dev}/include
+  '';
+
+  depsSha256 = "0cjnqilsb9la28b65j1w1n8gdr49b1d9m3z7wsl4q2w3qc42ad52";
+
+  meta = with stdenv.lib; {
+    description = "zsh plugin manager written in rust";
+    homepage = https://github.com/jedahan/zr;
+    license = with licenses; [ unfree ];
+    platforms = platforms.all;
+  };
+}