about summary refs log tree commit diff
path: root/pkgs/gopass-bin.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-04T15·10+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-04T15·10+0200
commit01aed568e561f072eeeb9df4c608ce2271e77912 (patch)
tree1f0b607ac4f7f8a4fdf5f7dab0ba03f2be72676c /pkgs/gopass-bin.nix
parent2a6d57e97b04d2e987f317d43389c2cf398df20e (diff)
feat: Update to NixOS 18.03
As the subject says ...

This only includes some minor changes in configuration. Most
interestingly several packages that I used to have in this repository
as custom packages are now available in `nixos-unstable`.

Unfortunately they weren't included in NixOS 18.03 though ...

Either way, this is cleaner.
Diffstat (limited to 'pkgs/gopass-bin.nix')
-rw-r--r--pkgs/gopass-bin.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/gopass-bin.nix b/pkgs/gopass-bin.nix
deleted file mode 100644
index 30705726e86a..000000000000
--- a/pkgs/gopass-bin.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs ? import <nixpkgs> {} }:
-
-with pkgs; stdenv.mkDerivation rec {
-  name = "gopass-bin-${version}";
-  version = "1.6.1";
-
-  src = fetchzip {
-    url = "https://github.com/justwatchcom/gopass/releases/download/v${version}/gopass-${version}-linux-386.tar.gz";
-    sha256 = "06iif74akcfb8n1h3ggig56a8y854p4dc7dpxpdfy6w9ra514phq";
-  };
-
-  phases = "installPhase";
-  installPhase = ''
-    mkdir -p $out/bin $out/share/fish/completions
-    cp $src/fish.completion $out/share/fish/completions/gopass.fish
-    cp $src/gopass $out/bin/gopass
-    chmod +x $out/bin/gopass
-  '';
-
-  meta = with stdenv.lib; {
-    description = "password-store like password manager with team functionality";
-    license     = licenses.mit;
-    homepage    = "https://github.com/justwatchcom/gopass";
-  };
-}