mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
22 lines
564 B
Nix
22 lines
564 B
Nix
{ stdenv, fetchurl, libdvdread, pkgconfig }:
|
|
|
|
let
|
|
version = "0.17";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "lsdvd-${version}";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lsdvd/lsdvd-${version}.tar.gz";
|
|
sha256 = "1274d54jgca1prx106iyir7200aflr70bnb1kawndlmcckcmnb3x";
|
|
};
|
|
|
|
buildInputs = [ libdvdread ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
homepage = http://sourceforge.net/projects/lsdvd/;
|
|
shortDescription = "Display information about audio, video, and subtitle tracks on a DVD";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|