summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-02-04 20:19:00 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-02-04 20:19:00 -0300
commit72c8068b22b334186f214fe78b1c4e0ac1800ad0 (patch)
treeb9f82f9bb35fb9d1d7a019f375cf96f77a35680f /pkgs/tools/cd-dvd
parent89136c1dcecb72660ab6b109ffe0b443974037d8 (diff)
downloadnixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.tar
nixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.tar.gz
nixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.tar.bz2
nixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.tar.lz
nixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.tar.xz
nixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.tar.zst
nixpkgs-72c8068b22b334186f214fe78b1c4e0ac1800ad0.zip
cue2pops: cosmetic changes
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/cue2pops/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/tools/cd-dvd/cue2pops/default.nix b/pkgs/tools/cd-dvd/cue2pops/default.nix
index e5d95e96fbc..70ab6db07c2 100644
--- a/pkgs/tools/cd-dvd/cue2pops/default.nix
+++ b/pkgs/tools/cd-dvd/cue2pops/default.nix
@@ -1,9 +1,11 @@
-{ lib, stdenv, fetchFromGitHub }:
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
 
-with lib;
 stdenv.mkDerivation {
   pname = "cue2pops";
-  version = "git-2018-01-04";
+  version = "unstable-2018-01-04";
 
   src = fetchFromGitHub {
     owner = "makefu";
@@ -14,14 +16,14 @@ stdenv.mkDerivation {
 
   dontConfigure = true;
 
-  makeFlags = ["CC=cc"];
+  makeFlags = [ "CC=cc" ];
 
   installPhase = ''
     install --directory --mode=755 $out/bin
     install --mode=755 cue2pops $out/bin
   '';
 
-  meta = {
+  meta = with lib; {
     description = "Convert CUE to ISO suitable to POPStarter";
     homepage = "https://github.com/makefu/cue2pops-linux";
     maintainers = with maintainers; [ AndersonTorres ];