mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
* Reiser4 stuff.
svn path=/nixpkgs/trunk/; revision=10498
This commit is contained in:
parent
7cc6713bdd
commit
9f2711c674
19
pkgs/development/libraries/libaal/default.nix
Normal file
19
pkgs/development/libraries/libaal/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libaal-1.0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://chichkin_i.zelnet.ru/namesys/libaal-1.0.5.tar.gz;
|
||||
sha256 = "109f464hxwms90mpczc7h7lmrdlcmlglabkzh86h25xrlxxdn6pz";
|
||||
};
|
||||
|
||||
preInstall = ''
|
||||
substituteInPlace Makefile --replace ./run-ldconfig true
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.namesys.com/;
|
||||
description = "Support library for Reiser4";
|
||||
};
|
||||
}
|
21
pkgs/os-specific/linux/reiser4progs/default.nix
Normal file
21
pkgs/os-specific/linux/reiser4progs/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{stdenv, fetchurl, libaal}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "reiser4progs-1.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://chichkin_i.zelnet.ru/namesys/reiser4progs-1.0.6.tar.gz;
|
||||
sha256 = "0x6m6px19hz54r8q4wwpf437qmqh44c5ddw9846isr64zs2rpld0";
|
||||
};
|
||||
|
||||
buildInputs = [libaal];
|
||||
|
||||
preInstall = ''
|
||||
substituteInPlace Makefile --replace ./run-ldconfig true
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.namesys.com/;
|
||||
description = "Reiser4 utilities";
|
||||
};
|
||||
}
|
@ -2,14 +2,15 @@ args: with args;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "reiserfsprogs-3.6.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.namesys.com/pub/reiserfsprogs/reiserfsprogs-3.6.19.tar.gz;
|
||||
sha256 = "1gv8gr0l5l2j52540y2wj9c9h7fn0r3vabykf95748ydmr9jr1n0";
|
||||
};
|
||||
url = http://chichkin_i.zelnet.ru/namesys/reiserfsprogs-3.6.19.tar.gz;
|
||||
sha256 = "1gv8gr0l5l2j52540y2wj9c9h7fn0r3vabykf95748ydmr9jr1n0";
|
||||
};
|
||||
|
||||
homepage=http://www.namesys.com/;
|
||||
|
||||
description="Reiserfs Utilities";
|
||||
|
||||
license="GPL-2";
|
||||
meta = {
|
||||
homepage = http://www.namesys.com/;
|
||||
description = "Reiserfs utilities";
|
||||
license = "GPL-2";
|
||||
};
|
||||
}
|
||||
|
@ -2188,6 +2188,10 @@ rec {
|
||||
inherit (xlibs) libXp libXau;
|
||||
};
|
||||
|
||||
libaal = import ../development/libraries/libaal {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libarchive = import ../development/libraries/libarchive {
|
||||
inherit fetchurl stdenv zlib;
|
||||
};
|
||||
@ -3855,6 +3859,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
reiser4progs = import ../os-specific/linux/reiser4progs {
|
||||
inherit fetchurl stdenv libaal;
|
||||
};
|
||||
|
||||
radeontools = import ../os-specific/linux/radeontools {
|
||||
inherit pciutils;
|
||||
inherit fetchurl stdenv;
|
||||
|
Loading…
Reference in New Issue
Block a user