2021-01-15 14:45:37 +00:00
|
|
|
{ lib, stdenv, fetchurl, linuxHeaders }:
|
2012-05-08 15:31:21 +00:00
|
|
|
|
2021-08-27 14:47:49 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jujuutils";
|
|
|
|
version = "0.2";
|
2012-05-08 15:31:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-27 14:47:49 +00:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/jujuutils/jujuutils-${version}.tar.gz";
|
2012-05-08 15:31:21 +00:00
|
|
|
sha256 = "1r74m7s7rs9d6y7cffi7mdap3jf96qwm1v6jcw53x5cikgmfxn4x";
|
|
|
|
};
|
|
|
|
|
2012-05-08 16:38:21 +00:00
|
|
|
buildInputs = [ linuxHeaders ];
|
|
|
|
|
2012-05-08 15:31:21 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/cladisch/linux-firewire-utils";
|
2012-05-08 15:31:21 +00:00
|
|
|
description = "Utilities around FireWire devices connected to a Linux computer";
|
2021-01-15 14:45:37 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2012-05-08 15:31:21 +00:00
|
|
|
};
|
|
|
|
}
|