···1-args:
2-args.stdenv.mkDerivation {
3 name = "libraw1394-1.2.0";
45- src = args.fetchurl {
6 url = "mirror://sourceforge/libraw1394/libraw1394-1.2.0.tar.gz";
7 sha256 = "1b9zqqzyz0ihyfvhn135y3wc6vmym5yz21jxj9dp0f09b96gmp0z";
8 };
9-10- buildInputs =(with args; []);
1112 meta = {
13 description = "library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
···1+args: with args;
2+stdenv.mkDerivation {
3 name = "libraw1394-1.2.0";
45+ src = fetchurl {
6 url = "mirror://sourceforge/libraw1394/libraw1394-1.2.0.tar.gz";
7 sha256 = "1b9zqqzyz0ihyfvhn135y3wc6vmym5yz21jxj9dp0f09b96gmp0z";
8 };
00910 meta = {
11 description = "library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
···12 #defaultFlags = ["doc"];
13 };
1415-in args.stdenv.mkDerivation {
1617 # passing the flags in case a library using this want's to check them (*) ..
18 inherit (co) /* flags */ buildInputs configureFlags;
···12 #defaultFlags = ["doc"];
13 };
1415+in stdenv.mkDerivation {
1617 # passing the flags in case a library using this want's to check them (*) ..
18 inherit (co) /* flags */ buildInputs configureFlags;
+3-5
pkgs/development/tools/misc/uisp/default.nix
···1-args:
2-args.stdenv.mkDerivation {
3 name = "uisp-20050207";
45 configureFlags="--disable-dependency-tracking";
67- src = args.fetchurl {
8 url = http://mirror.switch.ch/mirror/gentoo/distfiles/uisp-20050207.tar.gz;
9 sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
10 };
11-12- #buildInputs =(with args; []);
1314 meta = {
15 description = "tool for AVR microcontrollers which can interface to many hardware in-system programmers";
···1+args: with args;
2+stdenv.mkDerivation {
3 name = "uisp-20050207";
45 configureFlags="--disable-dependency-tracking";
67+ src = fetchurl {
8 url = http://mirror.switch.ch/mirror/gentoo/distfiles/uisp-20050207.tar.gz;
9 sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
10 };
001112 meta = {
13 description = "tool for AVR microcontrollers which can interface to many hardware in-system programmers";
···1-args:
2-args.stdenv.mkDerivation {
3 name = "radeontool-1.5";
45- inherit (args) pciutils;
67 # Don't know wether it's a good idea to hardcode the lspci path..
8 # But it will work on nix..
···12 cd ..
13 ";
1415- src = args.fetchurl {
16 url = http://fdd.com/software/radeon/radeontool-1.5.tar.gz;
17 sha256 = "0qbkawhhq0y0gqbbql7q04y0v0hims5c4jkjsbc1y03rf9kr10ar";
18 };
···1+args: with args;
2+stdenv.mkDerivation {
3 name = "radeontool-1.5";
45+ inherit pciutils;
67 # Don't know wether it's a good idea to hardcode the lspci path..
8 # But it will work on nix..
···12 cd ..
13 ";
1415+ src = fetchurl {
16 url = http://fdd.com/software/radeon/radeontool-1.5.tar.gz;
17 sha256 = "0qbkawhhq0y0gqbbql7q04y0v0hims5c4jkjsbc1y03rf9kr10ar";
18 };