mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #1011 from ocharles/rubyripper
rubyripper: New expression
This commit is contained in:
commit
a4c3b638f2
2 changed files with 18 additions and 0 deletions
16
pkgs/applications/audio/rubyripper/default.nix
Normal file
16
pkgs/applications/audio/rubyripper/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ stdenv, fetchurl, ruby, cdparanoia, makeWrapper }:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.6.2";
|
||||
name = "rubyripper-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://rubyripper.googlecode.com/files/rubyripper-${version}.tar.bz2";
|
||||
sha256 = "1fwyk3y0f45l2vi3a481qd7drsy82ccqdb8g2flakv58m45q0yl1";
|
||||
};
|
||||
configureFlags = [ "--enable-cli" ];
|
||||
buildInputs = [ ruby cdparanoia makeWrapper ];
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/rrip_cli" \
|
||||
--prefix PATH : "${ruby}/bin" \
|
||||
--prefix PATH : "${cdparanoia}/bin"
|
||||
'';
|
||||
}
|
|
@ -8470,6 +8470,8 @@ let
|
|||
enableCopyDevicesPatch = (config.rsync.enableCopyDevicesPatch or false);
|
||||
};
|
||||
|
||||
rubyripper = callPackage ../applications/audio/rubyripper {};
|
||||
|
||||
rxvt = callPackage ../applications/misc/rxvt { };
|
||||
|
||||
# = urxvt
|
||||
|
|
Loading…
Reference in a new issue