summary refs log tree commit diff
path: root/pkgs/os-specific/linux/jujuutils/default.nix
blob: a47b59e9e5677baca4731362eab7f538f88e0463 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, linuxHeaders }:

stdenv.mkDerivation {
  name = "jujuutils-0.2";

  src = fetchurl {
    url = "http://jujuutils.googlecode.com/files/jujuutils-0.2.tar.gz";
    sha256 = "1r74m7s7rs9d6y7cffi7mdap3jf96qwm1v6jcw53x5cikgmfxn4x";
  };

  buildInputs = [ linuxHeaders ];

  meta = {
    homepage = "http://code.google.com/p/jujuutils/";
    description = "Utilities around FireWire devices connected to a Linux computer";
    license = stdenv.lib.licenses.gpl2;
  };
}