Skip to content

Instantly share code, notes, and snippets.

@LnL7
Forked from codedmart/default.nix
Last active August 29, 2015 14:23
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 LnL7/74b7122e2c2acba1a708 to your computer and use it in GitHub Desktop.
Save LnL7/74b7122e2c2acba1a708 to your computer and use it in GitHub Desktop.
{ stdenv, fetchgit, python }:
stdenv.mkDerivation {
name = "UltiSnips-2015-06-11";
src = fetchgit {
url = "git://github.com/sirver/ultisnips";
rev = "c3a0924b777dbba2f8612950bd8f8a00df18d1bf";
sha256 = "7ad0e5dc8e8713db38ef2875e5d512e6cf8ef3dd7885ce12aff22052da780593";
};
dependencies = [ python ];
installPhase = ''
patchShebangs .
mkdir -p $out
cp -a ./ $out
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment