summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-12-27 18:40:08 +0100
committerfreezeboy <freezeboy@users.noreply.github.com>2020-12-27 18:40:08 +0100
commite33b84db0ce0aef165a7532957bcc57ae0d7acfd (patch)
treed3031c7e85d6156a30850fc5d9e1cb5557f8f65a /pkgs/tools/misc
parent4ec809a7f08c89bb5c98a9dfcaf533dbf2f68c99 (diff)
downloadnixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.tar
nixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.tar.gz
nixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.tar.bz2
nixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.tar.lz
nixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.tar.xz
nixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.tar.zst
nixpkgs-e33b84db0ce0aef165a7532957bcc57ae0d7acfd.zip
clac: 0.0.0.20170503 -> 0.3.3
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/clac/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/tools/misc/clac/default.nix b/pkgs/tools/misc/clac/default.nix
index 8aea37ebddf..8d6e464e9bb 100644
--- a/pkgs/tools/misc/clac/default.nix
+++ b/pkgs/tools/misc/clac/default.nix
@@ -1,13 +1,14 @@
 { stdenv, fetchFromGitHub }:
+
 stdenv.mkDerivation rec {
   pname = "clac";
-  version = "0.0.0.20170503";
+  version = "0.3.3";
 
   src = fetchFromGitHub {
     owner = "soveran";
     repo = "clac";
-    rev = "e92bd5cbab0d694cef945e3478820c9505e06f04";
-    sha256 = "0j8p1npgq32s377c9lw959h5i2csq4yb27cvg7av17bji46816bv";
+    rev = version;
+    sha256 = "rsag8MWl/udwXC0Gj864fAuQ6ts1gzrN2N/zelazqjE=";
   };
 
   makeFlags = [ "PREFIX=$(out)" ];
@@ -17,12 +18,12 @@ stdenv.mkDerivation rec {
     cp README* LICENSE "$out/share/doc/${pname}"
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     inherit version;
     description = "Interactive stack-based calculator";
-    license = stdenv.lib.licenses.bsd2;
-    maintainers = [stdenv.lib.maintainers.raskin];
-    platforms = stdenv.lib.platforms.unix;
     homepage = "https://github.com/soveran/clac";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ raskin ];
+    platforms = platforms.unix;
   };
 }