Skip to content

Instantly share code, notes, and snippets.

@disassembler
Created September 24, 2017 19:35
Show Gist options
  • Save disassembler/ccc2ffa67d18394cc960c89087c758be to your computer and use it in GitHub Desktop.
Save disassembler/ccc2ffa67d18394cc960c89087c758be to your computer and use it in GitHub Desktop.
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
src = fetchurl {
url = "https://raw.githubusercontent.com/keeweb/keeweb/ff30286472d0d929542f93d980c184dcc5548eb0/index.html";
sha256 = "1yf0iffjhq2r003pnpn92mn0924bn9yxjifxxj2ldcsgd7w0vagh";
};
installPhase = "cp ${src} $out";
}
@grahamc
Copy link

grahamc commented Sep 24, 2017

Same:

{ fetchurl }:
fetchurl {
    url = "https://raw.githubusercontent.com/keeweb/keeweb/ff30286472d0d929542f93d980c184dcc5548eb0/index.html";
    sha256 = "1yf0iffjhq2r003pnpn92mn0924bn9yxjifxxj2ldcsgd7w0vagh";
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment