libvolume_id: add license

This commit is contained in:
Markus Kowalewski 2020-06-30 21:22:31 +02:00
parent 2862ba321a
commit 2b99f89db3
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -1,8 +1,8 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libvolume_id-0.81.1";
src = fetchurl {
url = "https://www.marcuscom.com/downloads/libvolume_id-0.81.1.tar.bz2";
sha256 = "029z04vdxxsl8gycm9whcljhv6dy4b12ybsxdb99jr251gl1ifs5";
@ -18,7 +18,8 @@ stdenv.mkDerivation {
cp -f libvolume_id.so.0 $out/lib/
";
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
platforms = platforms.linux;
license = licenses.gpl2;
};
}