about summary refs log tree commit diff
path: root/pkgs/development/misc/intelgen4asm/default.nix
blob: c7365f944e95772edb0845636defe18a0b6ed00f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchgit, autoconf, automake, libtool, bison, flex }:

stdenv.mkDerivation rec {
  name = "intel-g4asm-20110416";
  
  src = fetchgit {
    url = http://anongit.freedesktop.org/git/xorg/app/intel-gen4asm.git;
    rev = "2450ff752642d116eb789a35393b9828133c7d31";
    sha256 = "a24c054a7c5ae335b72523fd2f51cae7f07a2885ef3c7a04d07a85e39f0c053f";
  };

  buildInputs = [ autoconf automake libtool bison flex ];

  preConfigure = "sh autogen.sh";

  meta = {
    homepage = http://cgit.freedesktop.org/xorg/app/intel-gen4asm/;
    license = stdenv.lib.licenses.mit;
    description = "Program to compile an assembly language for the Intel 965 Express Chipset";
  };
}