Created
July 18, 2018 13:21
-
-
Save asymmetric/cf60df41fcfd63bd6050f216ff209de7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchFromGitHub, rofi, pkgconfig, cairo, glib, libqalculate, autoreconfHook }: | |
stdenv.mkDerivation rec { | |
name = "rofi-calc-${version}"; | |
version = "v0.1"; | |
src = fetchFromGitHub { | |
owner = "svenstaro"; | |
repo = "rofi-calc"; | |
rev = version; | |
sha256 = "0xzwmdsim8p9kq9y41irvqhh92bk9nw5k2yy2fkf5ja5mmlbw5ri"; | |
}; | |
buildInputs = [ cairo rofi glib ]; | |
nativeBuildInputs = [ pkgconfig autoreconfHook ]; | |
meta = with stdenv.lib; { | |
description = "A rofi extension to perform calculations"; | |
homepage = https://github.com/svenstaro/rofi-calc; | |
maintainers = with maintainers; [ asymmetric ]; | |
license = licenses.mit; | |
platforms = platforms.linux; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment