summary refs log blame commit diff
path: root/pkgs/build-support/fetchfirefoxaddon/default.nix
blob: 127f32dd61b6b3fe1fba4fd18b187e94e194bb56 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                     


      




             
                   
           
  
 


                         
                                                                     
              
                  

















                                                                                                                                                                    
                                        


                                                  
{stdenv, lib, coreutils, unzip, jq, zip, fetchurl,writeScript,  ...}:

{
  name
, url
, md5 ? ""
, sha1 ? ""
, sha256 ? ""
, sha512 ? ""
, fixedExtid ? null
, hash ? ""
}:

stdenv.mkDerivation rec {

  inherit name;
  extid = if fixedExtid == null then "nixos@${name}" else fixedExtid;
  passthru = {
    inherit extid;
  };

  builder = writeScript "xpibuilder" ''
    source $stdenv/setup

    header "firefox addon $name into $out"

    UUID="${extid}"
    mkdir -p "$out/$UUID"
    unzip -q ${src} -d "$out/$UUID"
    NEW_MANIFEST=$(jq '. + {"applications": { "gecko": { "id": "${extid}" }}, "browser_specific_settings":{"gecko":{"id": "${extid}"}}}' "$out/$UUID/manifest.json")
    echo "$NEW_MANIFEST" > "$out/$UUID/manifest.json"
    cd "$out/$UUID"
    zip -r -q -FS "$out/$UUID.xpi" *
    rm -r "$out/$UUID"
  '';
  src = fetchurl {
    url = url;
    inherit md5 sha1 sha256 sha512 hash;
  };
  nativeBuildInputs = [ coreutils unzip zip jq  ];
}