Skip to content

Instantly share code, notes, and snippets.

@jasom
Created August 15, 2018 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasom/dc5b30e2e5d93905b2be84ba5ee51171 to your computer and use it in GitHub Desktop.
Save jasom/dc5b30e2e5d93905b2be84ba5ee51171 to your computer and use it in GitHub Desktop.
{ nixpkgs ? import <nixpkgs> {}, ... }:
nixpkgs.stdenv.mkDerivation {
name = "nomachine-6.2.4";
builder = ./builder.sh;
buildInputs = [ nixpkgs.bash ];
src = nixpkgs.fetchurl {
url = http://download.nomachine.com/download/6.2/Linux/nomachine_6.2.4_1_x86_64.tar.gz;
sha256 = "91310406f3701e1024bb3a11651fc2dd3632169e70836ab09e03e5051444cdb2";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment