nixpkgs/pkgs/os-specific/linux/jujuutils/default.nix
Lluís Batlle i Rossell 671857995d Adding jujuutils.
svn path=/nixpkgs/trunk/; revision=34020
2012-05-08 15:31:21 +00:00

17 lines
412 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "jujuutils-0.2";
src = fetchurl {
url = http://jujuutils.googlecode.com/files/jujuutils-0.2.tar.gz;
sha256 = "1r74m7s7rs9d6y7cffi7mdap3jf96qwm1v6jcw53x5cikgmfxn4x";
};
meta = {
description = "Utilities around FireWire devices connected to a Linux computer";
license = "GPLv2";
homepage = http://code.google.com/p/jujuutils/;
};
}