Skip to content

Instantly share code, notes, and snippets.

View countoren's full-sized avatar

oren countoren

  • Carlson Software
View GitHub Profile
with import ./nixpkgs.nix;
let
hie = (import (fetchFromGitHub {
owner="domenkozar";
repo="hie-nix";
rev="6794005";
sha256="0pc90ns0xcsa6b630d8kkq5zg8yzszbgd7qmnylkqpa0l58zvnpn";
}) { });
with import <nixpkgs> {};
import (fetchFromGitHub {
owner="NixOS";
repo="nixpkgs";
rev="f7c6e6b";
sha256="06bmjlsq5h2hfypzxldyb6zyxbbfapmw2cn6p384vl2pw3ibc340";
}) {}
with import <nixpkgs> {};
let
nixpkgs18_11 = import (fetchFromGitHub {
owner="NixOS";
repo="nixpkgs";
rev="866b1dbedaf84a0cc5721c475ec4196dc76ae906";
sha256="1kblflrvb4yqhkz9pdfkb33q4kzvkxf5ggl6b271qs7s2z1hn7j4";
}) {};
{ mkDerivation, fetchFromGitHub, makeWrapper, name, vimrcDrv }:
mkDerivation {
name = name;
src = fetchFromGitHub {
owner = "countoren";
repo = "Macvim-8.0.127-python";
rev = "c81e676a6b2dc08c736a25bf4b3260573ce68dc4";
sha256 = "1cpsy2na3lfg2mh0h3z4zp7ldn8rrwycvrb9mzw4vhvif636g2rk";
};
buildInputs = [ makeWrapper ];
@countoren
countoren / Program.cs
Last active June 12, 2017 03:23
Castle DictionaryAdapeter Test
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Castle.Components.DictionaryAdapter;
using SAPbobsCOM;
namespace testCastleDictAdapter
{
public interface IPerson