chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pr / privatebin / package.nix
bloba6508f53badb34911e0c94ce6da4391c88ffb9c4
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5   nixosTests,
6 }:
8 stdenvNoCC.mkDerivation (finalAttrs: {
9   pname = "privatebin";
10   version = "1.7.4";
11   src = fetchFromGitHub {
12     owner = "PrivateBin";
13     repo = "PrivateBin";
14     rev = "refs/tags/${finalAttrs.version}";
15     hash = "sha256-RFP6rhzfBzTmqs4eJXv7LqdniWoeBJpQQ6fLdoGd5Fk=";
16   };
18   installPhase = ''
19     runHook preInstall
20     mkdir -p $out
21     cp -R $src/* $out
22     runHook postInstall
23   '';
25   passthru.tests = nixosTests.privatebin;
27   meta = {
28     changelog = "https://github.com/PrivateBin/PrivateBin/releases/tag/${finalAttrs.version}";
29     description = "Minimalist, open source online pastebin where the server has zero knowledge of pasted data.";
30     homepage = "https://privatebin.info";
31     license = lib.licenses.gpl2;
32     maintainers = [ lib.maintainers.savyajha ];
33   };