blob: d6a6346ccdeedac9dd70456a1698866c5ef583b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
description = "A passwordstore and Secret Service API implementation";
inputs.nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: let
lib = nixpkgs.lib;
supportedSystems = lib.platforms.unix;
forSystem = f: system: f {
inherit system;
pkgs = import nixpkgs { inherit system; };
};
forAllSystems = f: lib.genAttrs supportedSystems (forSystem f);
in {
devShells = forAllSystems ({ system, pkgs, ... }: {
default = pkgs.mkShell {
name = "dev";
buildInputs = with pkgs; [ gpgme ];
shellHook = ''
[ -z "$XDG_DATA_HOME" ] &&
export XDG_DATA_HOME="$HOME/.local/share"
export PASSWORD_STORE_DIR="$XDG_DATA_HOME/debug_pass"
export PS1="\033[0;32m[ ]\033[0m $PS1"
'';
};
});
};
}
|