mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
19 lines
525 B
Nix
19 lines
525 B
Nix
{ stdenv, lib, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libsrs2";
|
|
version = "1.0.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.libsrs2.org/srs/libsrs2-${version}.tar.gz";
|
|
sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492";
|
|
};
|
|
|
|
meta = {
|
|
description = "Next generation SRS library from the original designer of SRS";
|
|
mainProgram = "srs";
|
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
|
homepage = "https://www.libsrs2.org/";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|