Loading pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix 0 → 100644 +30 −0 Original line number Diff line number Diff line { stdenv, buildEnv, fetchFromGitHub, mono }: let version = "1.8.4.1"; drv = stdenv.mkDerivation { name = "keepasshttp-${version}"; src = fetchFromGitHub { owner = "pfn"; repo = "keepasshttp"; rev = "${version}"; sha256 = "1074yv0pmzdwfwkx9fh7n2igdqwsyxypv55khkyng6synbv2p2fd"; }; meta = { description = "KeePass plugin to expose password entries securely (256bit AES/CBC) over HTTP"; homepage = https://github.com/pfn/keepasshttp; platforms = with stdenv.lib.platforms; linux; license = stdenv.lib.licenses.gpl3; }; pluginFilename = "KeePassHttp.plgx"; installPhase = '' mkdir -p $out/lib/dotnet/keepass/ cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename ''; }; in # Mono is required to compile plugin at runtime, after loading. buildEnv { name = drv.name; paths = [ mono drv ]; } pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -13314,6 +13314,8 @@ in keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { }; keepass-keepasshttp = callPackage ../applications/misc/keepass-plugins/keepasshttp { }; exrdisplay = callPackage ../applications/graphics/exrdisplay { }; exrtools = callPackage ../applications/graphics/exrtools { }; Loading Loading
pkgs/applications/misc/keepass-plugins/keepasshttp/default.nix 0 → 100644 +30 −0 Original line number Diff line number Diff line { stdenv, buildEnv, fetchFromGitHub, mono }: let version = "1.8.4.1"; drv = stdenv.mkDerivation { name = "keepasshttp-${version}"; src = fetchFromGitHub { owner = "pfn"; repo = "keepasshttp"; rev = "${version}"; sha256 = "1074yv0pmzdwfwkx9fh7n2igdqwsyxypv55khkyng6synbv2p2fd"; }; meta = { description = "KeePass plugin to expose password entries securely (256bit AES/CBC) over HTTP"; homepage = https://github.com/pfn/keepasshttp; platforms = with stdenv.lib.platforms; linux; license = stdenv.lib.licenses.gpl3; }; pluginFilename = "KeePassHttp.plgx"; installPhase = '' mkdir -p $out/lib/dotnet/keepass/ cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename ''; }; in # Mono is required to compile plugin at runtime, after loading. buildEnv { name = drv.name; paths = [ mono drv ]; }
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -13314,6 +13314,8 @@ in keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { }; keepass-keepasshttp = callPackage ../applications/misc/keepass-plugins/keepasshttp { }; exrdisplay = callPackage ../applications/graphics/exrdisplay { }; exrtools = callPackage ../applications/graphics/exrtools { }; Loading