aboutsummaryrefslogblamecommitdiff
path: root/flake.nix
blob: c3e1b2b4de47e7f0955edcbc3fffa9071a01987d (plain) (tree)
1
2
3
4
5
6
7
8







                                                                        



                                                

                                          

                                                                   
                                                  


                              



                                  
 
             


                                    


                                       


                                                       
                                                             



                                                    






























                                                                                

    
{
  description = "A passwordstore and Secret Service API implementation";

  inputs.nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable";

  outputs = { self, nixpkgs }: let
    lib = nixpkgs.lib;

    forSystem = f: system: f {
      inherit system;
      pkgs = import nixpkgs { inherit system; };
    };

    supportedSystems = lib.platforms.unix;
    forAllSystems = f: lib.genAttrs supportedSystems (forSystem f);
  in {
    devShells = forAllSystems ({ system, pkgs }: {
      default = pkgs.mkShell {
        name = "dev";

        buildInputs = with pkgs; [
          gpgme
          meson
          ninja

          gdb
          ccls
          clang-tools # clang-format

          self.packages.${system}.npass
        ];

	shellHook = ''
          [ -z "$XDG_DATA_HOME" ] &&
              export XDG_DATA_HOME="$HOME/.local/share"
          export PASSWORD_STORE_DIR="$XDG_DATA_HOME/dev_pass"
          export PS1="\033[0;32m[󰟵 ]\033[0m $PS1"
        '';
      };
    });

    packages = forAllSystems ({ system, pkgs }: let
      inherit (pkgs) meson ninja gpgme;
    in {
      npass = pkgs.stdenv.mkDerivation (finalAttrs: {
        pname = "npass";
        version = self.shortRev or self.dirtyShortRev;

        src = ./.;
        nativeBuildInputs = [
          meson
          ninja
        ];
        buildInputs = [
          gpgme
        ];

        meta = {
          description = "A passwordstore and Secret Service API implementation";
          homepage = "https://git.sinanmohd.com/npass";

          license = lib.licenses.gpl3Only;
          platforms = supportedSystems;
          mainProgram = "pass";

          maintainers = with lib.maintainers; [ sinanmohd ];
        };
      });

      default = self.packages.${system}.npass;
    });
  };
}