nixpkgs/pkgs/development/libraries/libdiscid/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

27 lines
715 B
Nix

{ stdenv, fetchurl, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "libdiscid-0.2.2";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake ];
src = fetchurl {
url = "http://users.musicbrainz.org/~matt/${name}.tar.gz";
sha256 = "00l4ln9rk0vqf67iccwqrgc9qx1al92i05zylh85kd1zn9d5sjwp";
};
# developer forgot to update his version number
# this is propagated to pkg-config
preConfigure = ''
substituteInPlace "CMakeLists.txt" \
--replace "PROJECT_VERSION 0.1.1" "PROJECT_VERSION 0.2.2"
'';
meta = {
description = "A C library for creating MusicBrainz DiscIDs from audio CDs";
homepage = http://musicbrainz.org/doc/libdiscid;
license = "LGPL-2.1";
};
}