commit
3f2e6b9c4b
@ -276,6 +276,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) {
|
|||||||
fullName = "European Union Public License 1.2";
|
fullName = "European Union Public License 1.2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fdl11 = spdx {
|
||||||
|
spdxId = "GFDL-1.1-only";
|
||||||
|
fullName = "GNU Free Documentation License v1.1 only";
|
||||||
|
};
|
||||||
|
|
||||||
fdl12 = spdx {
|
fdl12 = spdx {
|
||||||
spdxId = "GFDL-1.2-only";
|
spdxId = "GFDL-1.2-only";
|
||||||
fullName = "GNU Free Documentation License v1.2 only";
|
fullName = "GNU Free Documentation License v1.2 only";
|
||||||
|
@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
description = "Lossless audio codec";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.lgpl2;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,9 @@ stdenv.mkDerivation rec {
|
|||||||
--prefix PATH : "${cdparanoia}/bin"
|
--prefix PATH : "${cdparanoia}/bin"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
description = "High quality CD audio ripper";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -39,5 +39,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://www.dash.org";
|
homepage = "https://www.dash.org";
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Utilities for archiving photos for saving to long term storage or serving over the web";
|
description = "Utilities for archiving photos for saving to long term storage or serving over the web";
|
||||||
homepage = "https://github.com/danielgtaylor/jpeg-archive";
|
homepage = "https://github.com/danielgtaylor/jpeg-archive";
|
||||||
# license = ...; # mixed?
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.srghma ];
|
maintainers = [ maintainers.srghma ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
@ -33,5 +33,6 @@ stdenv.mkDerivation {
|
|||||||
raskin
|
raskin
|
||||||
];
|
];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.bsd2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -37,10 +37,11 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A GTK-based Usenet newsreader good at both text and binaries";
|
description = "A GTK-based Usenet newsreader good at both text and binaries";
|
||||||
homepage = "http://pan.rebelbase.com/";
|
homepage = "http://pan.rebelbase.com/";
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ maintainers.eelco ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ gpl2 fdl11 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13,4 +13,6 @@ stdenv.mkDerivation rec {
|
|||||||
cp "${qemu}/bin/qemu-io" "$out/bin/qemu-io"
|
cp "${qemu}/bin/qemu-io" "$out/bin/qemu-io"
|
||||||
cp "${qemu}/bin/qemu-nbd" "$out/bin/qemu-nbd"
|
cp "${qemu}/bin/qemu-nbd" "$out/bin/qemu-nbd"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
inherit (qemu) meta;
|
||||||
}
|
}
|
||||||
|
@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
|
|||||||
cp build/xhyve $out/bin
|
cp build/xhyve $out/bin
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Lightweight Virtualization on macOS Based on bhyve";
|
description = "Lightweight Virtualization on macOS Based on bhyve";
|
||||||
homepage = "https://github.com/mist64/xhyve";
|
homepage = "https://github.com/mist64/xhyve";
|
||||||
maintainers = [ lib.maintainers.lnl7 ];
|
maintainers = [ maintainers.lnl7 ];
|
||||||
platforms = lib.platforms.darwin;
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -47,5 +47,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "http://incise.org/tinywm.html";
|
homepage = "http://incise.org/tinywm.html";
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
platforms = libX11.meta.platforms;
|
platforms = libX11.meta.platforms;
|
||||||
|
license = licenses.publicDomain;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -84,10 +84,11 @@ stdenv.mkDerivation rec {
|
|||||||
moveToOutput bin "$bin"
|
moveToOutput bin "$bin"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Data model, library, and file format for storing and managing data";
|
description = "Data model, library, and file format for storing and managing data";
|
||||||
homepage = "https://support.hdfgroup.org/products/hdf4/";
|
homepage = "https://support.hdfgroup.org/products/hdf4/";
|
||||||
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
|
maintainers = with maintainers; [ knedlsepp ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user