Skip to content

Commit 0bab525

Browse files
authoredApr 19, 2020
Revert "[WIP] {help wanted} twolame: 2017-09-27 -> 0.4.0"
1 parent 443e544 commit 0bab525

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed
 

‎pkgs/development/libraries/twolame/default.nix

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
{ stdenv, fetchFromGitHub
2-
, autoreconfHook
3-
, pkgconfig
4-
, libsndfile, xmlto, asciidoc }:
2+
, autoreconfHook, pkgconfig
3+
, libsndfile }:
54

6-
with stdenv.lib;
7-
stdenv.mkDerivation rec {
5+
stdenv.mkDerivation {
86

97
pname = "twolame";
10-
version = "0.4.0";
8+
version = "2017-09-27";
119

1210
src = fetchFromGitHub {
1311
owner = "njh";
1412
repo = "twolame";
15-
rev = version;
16-
sha256 = "0ckwdx5kmgmh1jq2wl6c9d57pf6z6p2wjdy6fw01a8f3clg21a8g";
13+
rev = "977c8ac55d8ca6d5f35d1d413a119dac2b3b0333";
14+
sha256 = "1rq3yc8ygzdqid9zk6pixmm4w9sk2vrlx217lhn5bjaglv7iyf7x";
1715
};
1816

19-
nativeBuildInputs = [ autoreconfHook pkgconfig xmlto asciidoc ];
17+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2018
buildInputs = [ libsndfile ];
2119

2220
doCheck = false; # fails with "../build-scripts/test-driver: line 107: -Mstrict: command not found"
2321

24-
meta = {
22+
meta = with stdenv.lib;{
2523
description = "A MP2 encoder";
2624
longDescription = ''
2725
TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on

0 commit comments

Comments
 (0)
Please sign in to comment.