about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/rocketbirds.nix
blob: a57d1562f9c946877547644cfd1069ccf7b044ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, fetchHumbleBundle }:

stdenv.mkDerivation rec {
  name = "rocketbirds-${version}";
  version = "20130917";

  src = fetchHumbleBundle {
    name = "Rocketbirds${version}.sh";
    md5 = "7c5e6da4cd7fc7f2f51861f8b96a386f";
  };
}