1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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