mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
25 lines
539 B
Nix
25 lines
539 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvolume_id-0.81.1";
|
|
|
|
src = fetchurl {
|
|
url = http://www.marcuscom.com/downloads/libvolume_id-0.81.1.tar.bz2;
|
|
sha256 = "029z04vdxxsl8gycm9whcljhv6dy4b12ybsxdb99jr251gl1ifs5";
|
|
};
|
|
|
|
preBuild = "
|
|
makeFlagsArray=(prefix=$out E=echo RANLIB=ranlib INSTALL='install -c')
|
|
";
|
|
|
|
# Work around a broken Makefile.
|
|
postInstall = "
|
|
rm $out/lib/libvolume_id.so.0
|
|
cp -f libvolume_id.so.0 $out/lib/
|
|
";
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|